Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/marian-nmt/marian.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoman Grundkiewicz <romang@amu.edu.pl>2016-09-13 17:11:51 +0300
committerRoman Grundkiewicz <romang@amu.edu.pl>2016-09-13 17:11:51 +0300
commit04658f3d455be769c652b3067ffdd14ea924192a (patch)
tree86d8e8baed3576804651a67e7eca6e0a522f46ed /examples/mnist/Makefile
parentc32e0a0600ce535d76456e1df9023e29162fd733 (diff)
add script downloading MNIST dataset
Diffstat (limited to 'examples/mnist/Makefile')
-rw-r--r--examples/mnist/Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/examples/mnist/Makefile b/examples/mnist/Makefile
new file mode 100644
index 00000000..7e4e812f
--- /dev/null
+++ b/examples/mnist/Makefile
@@ -0,0 +1,11 @@
+.PHONY: all clean download
+
+all: download
+
+download: train-images-idx3-ubyte.gz train-labels-idx1-ubyte.gz t10k-images-idx3-ubyte.gz t10k-labels-idx3-ubyte.gz
+
+%.gz:
+ wget http://yann.lecun.com/exdb/mnist/$*.gz -O $@
+
+clean:
+ rm -f *.gz