script to get cifar
authorYangqing Jia <jiayq84@gmail.com>
Wed, 30 Oct 2013 23:47:58 +0000 (16:47 -0700)
committerYangqing Jia <jiayq84@gmail.com>
Wed, 30 Oct 2013 23:47:58 +0000 (16:47 -0700)
data/get_cifar.sh [new file with mode: 0755]

diff --git a/data/get_cifar.sh b/data/get_cifar.sh
new file mode 100755 (executable)
index 0000000..6f42bb0
--- /dev/null
@@ -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."