MNIST
npfl138.datasets.mnist.MNIST
Source code in npfl138/datasets/mnist.py
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 | |
Element
class-attribute
instance-attribute
The type of a single dataset element.
Elements
class-attribute
instance-attribute
The type of the whole dataset.
Dataset
Bases: Dataset
Source code in npfl138/datasets/mnist.py
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 | |
__len__
__len__() -> int
Return the number of elements in the dataset.
Source code in npfl138/datasets/mnist.py
42 43 44 | |
__getitem__
Return the index-th element of the dataset.
Source code in npfl138/datasets/mnist.py
46 47 48 | |
__init__
Load the MNIST dataset, downloading it if necessary.
Parameters:
-
dataset(str, default:'mnist') –The name of the dataset, typically
mnist. -
sizes(dict[str, int], default:{}) –An optional dictionary overriding the sizes of the
train,dev, andtestsplits.
Source code in npfl138/datasets/mnist.py
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 | |