wget without checking certificate for dropbox (dodge complaint on linux)
authorEvan Shelhamer <shelhamer@imaginarynumber.net>
Thu, 20 Mar 2014 05:01:45 +0000 (22:01 -0700)
committerEvan Shelhamer <shelhamer@imaginarynumber.net>
Thu, 20 Mar 2014 05:03:40 +0000 (22:03 -0700)
data/cifar10/get_cifar10.sh
data/ilsvrc12/get_ilsvrc_aux.sh
data/mnist/get_mnist.sh
examples/imagenet/get_caffe_reference_imagenet_model.sh

index 3498117..23e09ee 100755 (executable)
@@ -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..."
 
index 2c7f48c..dad17ff 100755 (executable)
@@ -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..."
 
index 07c017b..9ece28f 100755 (executable)
@@ -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..."
 
index 0d65dd6..7a85613 100755 (executable)
@@ -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."