From 62a4ba88f755c072329a70c0849aa1924c57fba4 Mon Sep 17 00:00:00 2001 From: Evan Shelhamer Date: Wed, 19 Mar 2014 22:01:45 -0700 Subject: [PATCH] wget without checking certificate for dropbox (dodge complaint on linux) --- data/cifar10/get_cifar10.sh | 2 +- data/ilsvrc12/get_ilsvrc_aux.sh | 2 +- data/mnist/get_mnist.sh | 8 ++++---- examples/imagenet/get_caffe_reference_imagenet_model.sh | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/data/cifar10/get_cifar10.sh b/data/cifar10/get_cifar10.sh index 3498117..23e09ee 100755 --- a/data/cifar10/get_cifar10.sh +++ b/data/cifar10/get_cifar10.sh @@ -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..." diff --git a/data/ilsvrc12/get_ilsvrc_aux.sh b/data/ilsvrc12/get_ilsvrc_aux.sh index 2c7f48c..dad17ff 100755 --- a/data/ilsvrc12/get_ilsvrc_aux.sh +++ b/data/ilsvrc12/get_ilsvrc_aux.sh @@ -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..." diff --git a/data/mnist/get_mnist.sh b/data/mnist/get_mnist.sh index 07c017b..9ece28f 100755 --- a/data/mnist/get_mnist.sh +++ b/data/mnist/get_mnist.sh @@ -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..." diff --git a/examples/imagenet/get_caffe_reference_imagenet_model.sh b/examples/imagenet/get_caffe_reference_imagenet_model.sh index 0d65dd6..7a85613 100755 --- a/examples/imagenet/get_caffe_reference_imagenet_model.sh +++ b/examples/imagenet/get_caffe_reference_imagenet_model.sh @@ -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." -- 2.7.4