ssd.pytorch
ssd.pytorch copied to clipboard
Can not down VOC data
When I run
sh data/scripts/VOC2007.sh
,
I got the following error:
curl: (7) Failed to connect to host.robots.ox.ac.uk port 80: No route to host Downloading VOC2007 test data ...
Why?
It's a known issue that the oxford website is down quite often. You can use this mirror to download the VOC dataset. Just change the download link in the script as follows:
# Download the data.
#curl -LO http://host.robots.ox.ac.uk/pascal/VOC/voc2007/VOCtrainval_06-Nov-2007.tar
curl -LO http://pjreddie.com/media/files/VOCtrainval_06-Nov-2007.tar
echo "Downloading VOC2007 test data ..."
curl -LO http://pjreddie.com/media/files/VOCtest_06-Nov-2007.tar
#curl -LO http://host.robots.ox.ac.uk/pascal/VOC/voc2007/VOCtest_06-Nov-2007.tar
echo "Done downloading."
It's a known issue that the oxford website is down quite often. You can use this mirror to download the VOC dataset. Just change the download link in the script as follows:
# Download the data. #curl -LO http://host.robots.ox.ac.uk/pascal/VOC/voc2007/VOCtrainval_06-Nov-2007.tar curl -LO http://pjreddie.com/media/files/VOCtrainval_06-Nov-2007.tar echo "Downloading VOC2007 test data ..." curl -LO http://pjreddie.com/media/files/VOCtest_06-Nov-2007.tar #curl -LO http://host.robots.ox.ac.uk/pascal/VOC/voc2007/VOCtest_06-Nov-2007.tar echo "Done downloading."
For VOC2012:
curl -LO http://pjreddie.com/media/files/VOCtrainval_11-May-2012.tar