File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
3
# download and extract VOC 2007 trainval split
4
- wget http://host.robots.ox.ac.uk/pascal/VOC/voc2007/VOCtrainval_06-Nov-2007.tar -P data/
4
+ # use one of the following
5
+ # wget http://host.robots.ox.ac.uk/pascal/VOC/voc2007/VOCtrainval_06-Nov-2007.tar -P data/
6
+ wget http://pjreddie.com/media/files/VOCtrainval_06-Nov-2007.tar -P data/
5
7
mkdir data/VOCtrainval_06-Nov-2007
6
8
tar xf data/VOCtrainval_06-Nov-2007.tar --directory data/VOCtrainval_06-Nov-2007/
7
9
8
10
# download and extract VOC 2007 test split
9
- wget http://host.robots.ox.ac.uk/pascal/VOC/voc2007/VOCtest_06-Nov-2007.tar -P data/
11
+ # use one of the following
12
+ # wget http://host.robots.ox.ac.uk/pascal/VOC/voc2007/VOCtest_06-Nov-2007.tar -P data/
13
+ wget http://pjreddie.com/media/files/VOCtest_06-Nov-2007.tar -P data/
10
14
mkdir data/VOCtest_06-Nov-2007
11
15
tar xf data/VOCtest_06-Nov-2007.tar --directory data/VOCtest_06-Nov-2007/
12
16
You can’t perform that action at this time.
0 commit comments