wget http://host.robots.ox.ac.uk/pascal/VOC/voc2007/VOCtrainval_06-Nov-2007.tar -O ./VOCdevkit/VOCtrainval_06-Nov-2007.tar
Let's break it down:
wget
- This is a command-line utility to download files from the internet. It supports downloading via HTTP, HTTPS, and FTP.http://host.robots.ox.ac.uk/pascal/VOC/voc2007/VOCtrainval_06-Nov-2007.tar
- The URL of the file you want to download, in this case, the PASCAL VOC 2007 training/validation data.-O
- An option forwget
that allows you to specify the output filename and path../VOCdevkit/VOCtrainval_06-Nov-2007.tar
- Where you want the downloaded file to be saved. The.
indicates the current directory, so it will save in theVOCdevkit
subdirectory with the provided filename.
If you wish to substitute your data, just place the data some folder on your machine and point to it later in the tutorial when path for the dataset is used.
Thanks,
Jaka