Skip to content

Commit 236eef6

Browse files
committed
script to get cifar
1 parent cfd6e1d commit 236eef6

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

data/get_cifar.sh

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/usr/bin/env sh
2+
# This scripts downloads the mnist data and unzips it.
3+
4+
echo "Downloading..."
5+
6+
wget -q http://www.cs.toronto.edu/~kriz/cifar-10-binary.tar.gz
7+
8+
echo "Unzipping..."
9+
10+
tar xzf cifar-10-binary.tar.gz
11+
12+
echo "Done."

0 commit comments

Comments
 (0)