Closed
Description
A tutorial outlining how to make use of the torch.utils.data.Dataset
and torch.utils.data.DataLoader
on your own data (not just the torchvision.datasets
) would be good. The documentation page is quite obscure, and it is not entirely clear how these can be made use of on your own data.
Also outlining what would be good practices for when your data is:
- A numpy array
- A folder full of image files
And if pytorch has built in functions for creating queues of data, for when the data is too big to all fit in memory in one go (eg in the case of a folder full of image files).