Skip to content

Commit 7460477

Browse files
committed
Adding (compressed) MNIST data
1 parent b79c29d commit 7460477

File tree

4 files changed

+8
-13
lines changed

4 files changed

+8
-13
lines changed

code/mnist_loader.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,9 @@
77
and ``load_data_wrapper``. In practice, ``load_data_wrapper`` is the
88
function usually called by our neural network code.
99
10-
Note that the code requires the file ``../data/mnist.pkl``. This is not
11-
included in the repository. It may be downloaded from:
12-
13-
http://www.iro.umontreal.ca/~lisa/deep/data/mnist/mnist.pkl.gz
10+
Note that the code requires the file ``../data/mnist.pkl``. If it's
11+
not already in that directory then you should unzip the file
12+
``../data/mnist.pkl.gz``.
1413
"""
1514

1615
#### Libraries

data/README

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
1-
This directory contains the file ``mnist.pkl``. This is not included
2-
in the repository, but may be downloaded from:
3-
4-
http://www.iro.umontreal.ca/~lisa/deep/data/mnist/mnist.pkl.gz
1+
This directory should contain the file ``mnist.pkl``. If it's not
2+
already in the directoy you should unzip the file ``mnist.pkl.gz``.

data/mnist.pkl.gz

16.3 MB
Binary file not shown.

fig/mnist.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,9 @@
44
55
Draws images based on the MNIST data.
66
7-
Note that the code requires the file ``../../data/mnist.pkl``. This is not
8-
included in the repository. It may be downloaded from:
9-
10-
http://www.iro.umontreal.ca/~lisa/deep/data/mnist/mnist.pkl.gz
11-
"""
7+
Note that the code requires the file ``../data/mnist.pkl``. If it's
8+
not already in that directory then you should unzip the file
9+
``../data/mnist.pkl.gz``."""
1210

1311
#### Libraries
1412
# Standard library

0 commit comments

Comments
 (0)