hayden-donnelly
commited on
Commit
·
da2b8d5
1
Parent(s):
60ad6f7
Update README.md
Browse files
README.md
CHANGED
@@ -7,4 +7,55 @@ size_categories:
|
|
7 |
- 10K<n<100K
|
8 |
---
|
9 |
# Easy MNIST
|
10 |
-
MNIST processed into three easy to use formats.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
- 10K<n<100K
|
8 |
---
|
9 |
# Easy MNIST
|
10 |
+
MNIST processed into three easy to use formats. Each .zip file contains a labels_and_paths.csv file and a data directory.
|
11 |
+
|
12 |
+
## mnist_png.zip
|
13 |
+
MNIST in the png format.
|
14 |
+
```
|
15 |
+
label path
|
16 |
+
0 5 data/0.png
|
17 |
+
1 0 data/1.png
|
18 |
+
2 4 data/2.png
|
19 |
+
3 1 data/3.png
|
20 |
+
4 9 data/4.png
|
21 |
+
... ... ...
|
22 |
+
69995 2 data/69995.png
|
23 |
+
69996 3 data/69996.png
|
24 |
+
69997 4 data/69997.png
|
25 |
+
69998 5 data/69998.png
|
26 |
+
69999 6 data/69999.png
|
27 |
+
```
|
28 |
+
|
29 |
+
## mnist_numpy.zip
|
30 |
+
MNIST in the npy format.
|
31 |
+
```
|
32 |
+
label path
|
33 |
+
0 5 data/0.npy
|
34 |
+
1 0 data/1.npy
|
35 |
+
2 4 data/2.npy
|
36 |
+
3 1 data/3.npy
|
37 |
+
4 9 data/4.npy
|
38 |
+
... ... ...
|
39 |
+
69995 2 data/69995.npy
|
40 |
+
69996 3 data/69996.npy
|
41 |
+
69997 4 data/69997.npy
|
42 |
+
69998 5 data/69998.npy
|
43 |
+
69999 6 data/69999.npy
|
44 |
+
```
|
45 |
+
|
46 |
+
## mnist_numpy_flat.zip
|
47 |
+
MNIST in the npy format, flattened to 784 dimensional vectors.
|
48 |
+
```
|
49 |
+
label path
|
50 |
+
0 5 data/0.npy
|
51 |
+
1 0 data/1.npy
|
52 |
+
2 4 data/2.npy
|
53 |
+
3 1 data/3.npy
|
54 |
+
4 9 data/4.npy
|
55 |
+
... ... ...
|
56 |
+
69995 2 data/69995.npy
|
57 |
+
69996 3 data/69996.npy
|
58 |
+
69997 4 data/69997.npy
|
59 |
+
69998 5 data/69998.npy
|
60 |
+
69999 6 data/69999.npy
|
61 |
+
```
|