From 236eef67557292a2a6aecb8035e9de61c03be7e1 Mon Sep 17 00:00:00 2001 From: Yangqing Jia Date: Wed, 30 Oct 2013 16:47:58 -0700 Subject: [PATCH] script to get cifar --- data/get_cifar.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 data/get_cifar.sh diff --git a/data/get_cifar.sh b/data/get_cifar.sh new file mode 100755 index 0000000..6f42bb0 --- /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." -- 2.7.4