summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: cfd6e1d)
raw | patch | inline | side by side (parent: cfd6e1d)
author | Yangqing Jia <jiayq84@gmail.com> | |
Wed, 30 Oct 2013 23:47:58 +0000 (16:47 -0700) | ||
committer | Yangqing Jia <jiayq84@gmail.com> | |
Wed, 30 Oct 2013 23:47:58 +0000 (16:47 -0700) |
data/get_cifar.sh | [new file with mode: 0755] | patch | blob |
diff --git a/data/get_cifar.sh b/data/get_cifar.sh
--- /dev/null
+++ b/data/get_cifar.sh
@@ -0,0 +1,12 @@
+#!/usr/bin/env sh
+# This scripts downloads the mnist data and unzips it.
+
+echo "Downloading..."
+
+wget -q http://www.cs.toronto.edu/~kriz/cifar-10-binary.tar.gz
+
+echo "Unzipping..."
+
+tar xzf cifar-10-binary.tar.gz
+
+echo "Done."