CoolFace
Datasetpublic

Royi/MNIST

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… See the full description on the dataset page: https://huggingface.co/datasets/Royi/MNIST.

sourceHugging Facemitupdated 8mo agoView on Hugging Face
0likes6downloads
Dataset Card

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:

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.

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.