afnio.utils.data.dataset#
Classes
- class afnio.utils.data.dataset.Dataset[source]#
Bases:
Generic[T_co]An abstract class representing a
Dataset.All datasets that represent a map from keys to data samples should subclass it. All subclasses should overwrite
__getitem__(), supporting fetching a data sample for a given key and__len__(), which is expected to return the size of the dataset by the default options ofDataLoader. Subclasses could also optionally implement__getitems__(), for speedup batched samples loading. This method accepts list of indices of samples of batch and returns list of samples.