KMNIST¶
- class torchvision.datasets.KMNIST(root: str, train: bool = True, transform: Optional[Callable] = None, target_transform: Optional[Callable] = None, download: bool = False)[source]¶
Kuzushiji-MNIST Dataset.
- Parameters:
root (string) – Root directory of dataset where
KMNIST/raw/train-images-idx3-ubyte
andKMNIST/raw/t10k-images-idx3-ubyte
exist.train (bool, optional) – If True, creates dataset from
train-images-idx3-ubyte
, otherwise fromt10k-images-idx3-ubyte
.download (bool, optional) – If True, downloads the dataset from the internet and puts it in root directory. If dataset is already downloaded, it is not downloaded again.
transform (callable, optional) – A function/transform that takes in an PIL image and returns a transformed version. E.g,
transforms.RandomCrop
target_transform (callable, optional) – A function/transform that takes in the target and transforms it.
- Special-members: