summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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."