Public Member Functions | |
def | __getitem__ (self, index) |
def | __len__ (self) |
def | __add__ (self, other) |
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.
Definition at line 8 of file dataset.py.