MNIST is an image dataset of handwritten digits and their correct labels.
This repository provides the dataset in ndjson (newline-delimited JSON), where each row is one image and its label:
{"image": [... 784 ints], "label": 1}
...
The data is accessible at the URLs:
curl -LO https://github.com/Eventual-Inc/mnist-json/raw/master/mnist_handwritten_test.json.gz
curl -LO https://github.com/Eventual-Inc/mnist-json/raw/master/mnist_handwritten_train.json.gz
The weights for a model trained using https://github.com/pytorch/examples/blob/main/mnist/main.py on one epoch is available in this repo as well in mnist_cnn.pt
curl -LO https://github.com/Eventual-Inc/mnist-json/raw/master/mnist_cnn.pt