From 149263279655d26dc3c74192773de1c9c5a772c9 Mon Sep 17 00:00:00 2001 From: Jebastin Nadar Date: Sat, 25 Sep 2021 19:13:24 +0530 Subject: [PATCH] Fix zipfile name for coco128-segments (#4914) --- data/scripts/get_coco128.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/scripts/get_coco128.sh b/data/scripts/get_coco128.sh index 4238e3634..ee05a867e 100644 --- a/data/scripts/get_coco128.sh +++ b/data/scripts/get_coco128.sh @@ -10,7 +10,7 @@ # Download/unzip images and labels d='../datasets' # unzip directory url=https://github.com/ultralytics/yolov5/releases/download/v1.0/ -f='coco128.zip' # or 'coco2017labels-segments.zip', 68 MB +f='coco128.zip' # or 'coco128-segments.zip', 68 MB echo 'Downloading' $url$f ' ...' curl -L $url$f -o $f && unzip -q $f -d $d && rm $f &