File size: 986 Bytes
993c60f 0ff51c2 993c60f a9d492e 993c60f 0ff51c2 a9d492e 0ff51c2 a9d492e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 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 |
---
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`](https://www.openml.org/search?type=data&sort=runs&id=554&status=active).
The way to reproduce:
```python
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](https://github.com/zalandoresearch/fashion-mnist).
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_. |