ssd.pytorch icon indicating copy to clipboard operation
ssd.pytorch copied to clipboard

Can not down VOC data

Open ArtlyStyles opened this issue 4 years ago • 2 comments

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?

ArtlyStyles avatar Oct 12 '20 05:10 ArtlyStyles

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."

shruti-shyam avatar Dec 07 '20 13:12 shruti-shyam

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

zhanghengdev avatar Aug 07 '21 01:08 zhanghengdev