#!/usr/bin/env sh# This scripts downloads the mnist data and unzips it.set-eDIR="$(cd"$(dirname"$0")";pwd-P)"rm-rf"$DIR/raw_data"mkdir"$DIR/raw_data"cd"$DIR/raw_data"echo"Downloading..."for fname in train-images-idx3-ubyte train-labels-idx1-ubyte t10k-images-idx3-ubyte t10k-labels-idx1-ubytedo if[!-e$fname];thenwget --no-check-certificate http://yann.lecun.com/exdb/mnist/${fname}.gzgunzip${fname}.gzfidonecd$DIRrm-f*.listpython generate_list.py