You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For data sets like multi-MNIST and small ImageNet, we preprocess the data and cache by writing to disk so that future calls can load it into memory. More generally, we need to save and load data when its function requires preprocessing and the data fits in memory to be loaded.
We should decide on a specific option such as pickle, np.savez, or hdf5.
The text was updated successfully, but these errors were encountered:
How about tfrecords for both in-memory/out of memory datatsets? I feel caching of preprocessed data becomes more important for larger datasets. You can look at segnet project in my repo on integrating Dataset API and Edward. Eventually, it becomes faster to save the processed images in tfrecords for multiple itreations
For data sets like multi-MNIST and small ImageNet, we preprocess the data and cache by writing to disk so that future calls can load it into memory. More generally, we need to save and load data when its function requires preprocessing and the data fits in memory to be loaded.
We should decide on a specific option such as pickle, np.savez, or hdf5.
The text was updated successfully, but these errors were encountered: