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
class Dataset(object):
"""An abstract class representing a Dataset.
All other datasets should subclass it. All subclasses should override
``__len__``, that provides the size of the dataset, and ``__getitem__``,
supporting integer indexing in range from 0 to len(self) exclusive.
"""
def __getitem__(self, index):
raise NotImplementedError
def __len__(self):
raise NotImplementedError
def __add__(self, other):
return ConcatDataset([self, other])
This is a sample showing what I have done before.
class Dataset(torch.utils.data.Dataset):
def __init__(self, img_dir, label_dir):
# Load images & labels
self.image_files = [f for f in glob.glob(img_dir + '/*.bmp')]
self.label_files = [label_dir + '/' + f.split('/')[-1].split('.')[0] + '.bmp'
for f in self.image_files]
# Do something
def __len__(self):
return len(self.image_files)
def __getitem__(self, idx):
# Do something
image = self.images[idx]
label = self.labels[idx]
return image, label
Hi
Has anyone tried writing a data loader using torch.utils??
I'm wondering what do I need to change in order to do so.
The text was updated successfully, but these errors were encountered: