Smartsim data loader for PyTorch #106
Labels
area: third-party
Issues related to Issues related to dependencies and third-part and third-party package integrations
type: feature
Issues that include feature request or feature idea
Description
To enable users to use tensors stored in the DB to perform training, we want to offer ready-to-use PyTorch data loaders. This is one of the two stories which will implement what was investigated in #49
Justification
Users who want to implement training services using SmartSim will be able to simply include
from import smartsim.exp.data import SmartPyTorchDataLoader
and immediately start training.Implementation Strategy
A simple one, acting as base class will simply download the tensor from the DB and use it to train a NN, basically optimizing
Model(x)=y
. Inheriting from the base class, a more sophisticated one will keep checking for availability of new data.The text was updated successfully, but these errors were encountered: