summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorYangqing Jia <jiayq84@gmail.com>2013-10-30 16:47:58 -0700
committerYangqing Jia <jiayq84@gmail.com>2013-10-30 16:47:58 -0700
commit236eef67557292a2a6aecb8035e9de61c03be7e1 (patch)
tree0bba90f5c30996480aed3c7b55c4b810d1147f4c /data
parentcfd6e1dbf2c9e92f79e47cdd1de05fcfbfadda6e (diff)
downloadcaffeonacl-236eef67557292a2a6aecb8035e9de61c03be7e1.tar.gz
caffeonacl-236eef67557292a2a6aecb8035e9de61c03be7e1.tar.bz2
caffeonacl-236eef67557292a2a6aecb8035e9de61c03be7e1.zip
script to get cifar
Diffstat (limited to 'data')
-rwxr-xr-xdata/get_cifar.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/data/get_cifar.sh b/data/get_cifar.sh
new file mode 100755
index 00000000..6f42bb09
--- /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."