File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed
Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change 33# Download command: bash ./scripts/get_coco.sh
44
55# Download/unzip labels
6- d=' ./' # unzip directory
7- url=https://github.com/ultralytics/yolov5/releases/download/v1.0/
8- f=' coco2017labels-segments.zip' # or 'coco2017labels.zip', 68 MB
6+ # d='./' # unzip directory
7+ d=' /perception/yixu.cui/datas/tracking/coco' # unzip directory
8+ url=https://github.com/ultralytics/yolov5/releases/download/v1.0/ # 404
9+ # https://github.com/WongKinYiu/yolov7/releases/download/v0.1/coco2017labels-segments.zip
10+ url=https://github.com/WongKinYiu/yolov7/releases/download/v0.1/ # available
11+ f=' coco2017labels-segments.zip' # or 'coco2017labels.zip', 177 MB
912echo ' Downloading' $url$f ' ...'
1013curl -L $url$f -o $f && unzip -q $f -d $d && rm $f & # download, unzip, remove in background
1114
1215# Download/unzip images
13- d=' ./coco/images' # unzip directory
16+ # d='./coco/images' # unzip directory
17+ d=' /perception/yixu.cui/datas/tracking/coco/images' # unzip directory
1418url=http://images.cocodataset.org/zips/
1519f1=' train2017.zip' # 19G, 118k images
1620f2=' val2017.zip' # 1G, 5k images
You can’t perform that action at this time.
0 commit comments