Skip to content

Commit

Permalink
wget without checking certificate for dropbox (dodge complaint on linux)
Browse files Browse the repository at this point in the history
  • Loading branch information
shelhamer committed Mar 20, 2014
1 parent 45b31bf commit 62a4ba8
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion data/cifar10/get_cifar10.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ cd $DIR

echo "Downloading..."

wget http://www.cs.toronto.edu/~kriz/cifar-10-binary.tar.gz
wget --no-check-certificate http://www.cs.toronto.edu/~kriz/cifar-10-binary.tar.gz

echo "Unzipping..."

Expand Down
2 changes: 1 addition & 1 deletion data/ilsvrc12/get_ilsvrc_aux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ cd $DIR

echo "Downloading..."

wget https://www.dropbox.com/s/g5myor4y2scdv95/caffe_ilsvrc12.tar.gz
wget --no-check-certificate https://www.dropbox.com/s/g5myor4y2scdv95/caffe_ilsvrc12.tar.gz

echo "Unzipping..."

Expand Down
8 changes: 4 additions & 4 deletions data/mnist/get_mnist.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ cd $DIR

echo "Downloading..."

wget http://yann.lecun.com/exdb/mnist/train-images-idx3-ubyte.gz
wget http://yann.lecun.com/exdb/mnist/train-labels-idx1-ubyte.gz
wget http://yann.lecun.com/exdb/mnist/t10k-images-idx3-ubyte.gz
wget http://yann.lecun.com/exdb/mnist/t10k-labels-idx1-ubyte.gz
wget --no-check-certificate http://yann.lecun.com/exdb/mnist/train-images-idx3-ubyte.gz
wget --no-check-certificate http://yann.lecun.com/exdb/mnist/train-labels-idx1-ubyte.gz
wget --no-check-certificate http://yann.lecun.com/exdb/mnist/t10k-images-idx3-ubyte.gz
wget --no-check-certificate http://yann.lecun.com/exdb/mnist/t10k-labels-idx1-ubyte.gz

echo "Unzipping..."

Expand Down
2 changes: 1 addition & 1 deletion examples/imagenet/get_caffe_reference_imagenet_model.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ fi

echo "Downloading..."

wget https://www.dropbox.com/s/n3jups0gr7uj0dv/$MODEL
wget --no-check-certificate https://www.dropbox.com/s/n3jups0gr7uj0dv/$MODEL

echo "Done. Please run this command again to verify that checksum = $CHECKSUM."

0 comments on commit 62a4ba8

Please sign in to comment.