Skip to content

Commit 9abbe8f

Browse files
author
yixu.cui
committed
replace zip file url
1 parent 2c26281 commit 9abbe8f

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

scripts/get_coco.sh

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,18 @@
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
912
echo 'Downloading' $url$f ' ...'
1013
curl -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
1418
url=http://images.cocodataset.org/zips/
1519
f1='train2017.zip' # 19G, 118k images
1620
f2='val2017.zip' # 1G, 5k images

0 commit comments

Comments
 (0)