shlogg · Early preview
Super Kai (Kazuya Ito) @superkai_kazuya

KMNIST Dataset Explained In 60 Characters

KMNIST() explained: a dataset for handwritten Kanji character recognition. Use KMNIST() with torchvision.datasets to load and preprocess data.

Buy Me a Coffee☕
*Memos:

My post explains KMNIST.
My post explains MNIST().
My post explains EMNIST().
My post explains QMNIST().
My post explains MovingMNIST().
My post explains FashionMNIST().

KMNIST() can use KMNIST dataset as shown below:
*Memos:

The 1st argument is root(Required-Type:str or pathlib.Path). *An absolute or relative path is possible.
The 2nd argument is train(Optional-Default:True-Type:bool). *If it's True, train data(60,000 images) is used while if it's False, test data(10,000 images) is used.
The 3rd argument is transform(Optional-Default:None-Type:callable).
The 4th a...