metadata
license: mit
task_categories:
- image-classification
modalities:
- image
language:
- en
tags:
- MNIST
- Image
- Classification
- Image Classification
pretty_name: MNIST Like Datasets
size_categories:
- 10K<n<100K
The dataset contains various MNIST like datasets in teh form of a csv files.
MNIST
Based on the MNIST Dataset in OpenML: OpenML mnist_784.
The way to reproduce:
from sklearn.datasets import fetch_openml
dfX, dsY = fetch_openml('mnist_784', version = 1, return_X_y = True, as_frame = True)
dfX.columns = [str(ii) for ii in range(dfX.shape[1])]
dfX['Label'] = dsY
dfX.to_csv('MNIST.csv')
Fashion MNIST
Based on Zalando Research - FashionMNIST.
Packaged into a CSV in a Row Major manner with added Label column.
The first 60,000 samples are the Train Set and the last 10,000 samples are the Test Set.