You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
618 B
18 lines
618 B
#!/bin/bash
|
|
# YOLOv5 🚀 by Ultralytics, GPL-3.0 license
|
|
# Download COCO128 dataset https://www.kaggle.com/ultralytics/coco128 (first 128 images from COCO train2017)
|
|
# Example usage: bash data/scripts/get_coco128.sh
|
|
# parent
|
|
# ├── yolov5
|
|
# └── datasets
|
|
# └── coco128 ← downloads here
|
|
|
|
# Download/unzip images and labels
|
|
d='../datasets' # unzip directory
|
|
url=https://github.com/ultralytics/yolov5/releases/download/v1.0/
|
|
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 &
|
|
|
|
wait # finish background tasks
|