JustinCignal/lenet5-digit-demo
Image Classification • Updated
image imagewidth (px) 28 28 | label int64 0 9 |
|---|---|
5 | |
0 | |
4 | |
1 | |
9 | |
2 | |
1 | |
3 | |
1 | |
4 | |
3 | |
5 | |
3 | |
6 | |
1 | |
7 | |
2 | |
8 | |
6 | |
9 | |
4 | |
0 | |
8 | |
1 | |
1 | |
2 | |
4 | |
3 | |
2 | |
7 | |
3 | |
8 | |
6 | |
9 | |
8 | |
5 | |
6 | |
0 | |
7 | |
6 | |
1 | |
8 | |
7 | |
9 | |
3 | |
9 | |
8 | |
5 | |
9 | |
3 | |
3 | |
0 | |
7 | |
4 | |
9 | |
8 | |
0 | |
9 | |
4 | |
1 | |
8 | |
4 | |
6 | |
0 | |
4 | |
5 | |
6 | |
1 | |
0 | |
0 | |
1 | |
7 | |
1 | |
6 | |
3 | |
0 | |
2 | |
1 | |
1 | |
7 | |
9 | |
0 | |
2 | |
6 | |
7 | |
8 | |
3 | |
9 | |
0 | |
4 | |
6 | |
7 | |
4 | |
6 | |
8 | |
0 | |
7 | |
8 | |
3 | |
1 |
Training set for a small LeNet-5 handwritten-digit classifier used in an interactive browser demo. Derived from the standard MNIST training split (60,000 28x28 grayscale images, digits 0-9), repackaged as a single parquet shard for convenience.
image: 28x28 grayscale PNGlabel: digit, 0-9from datasets import load_dataset
ds = load_dataset("JustinCignal/mnist-lenet5-demo")
Original MNIST terms apply (Yann LeCun, Corinna Cortes, Christopher J.C. Burges).