您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

18 行
615B

  1. #!/bin/bash
  2. # YOLOv5 🚀 by Ultralytics, GPL-3.0 license
  3. # Download COCO128 dataset https://www.kaggle.com/ultralytics/coco128 (first 128 images from COCO train2017)
  4. # Example usage: bash data/scripts/get_coco128.sh
  5. # parent
  6. # ├── yolov5
  7. # └── datasets
  8. # └── coco128 ← downloads here
  9. # Download/unzip images and labels
  10. d='../datasets' # unzip directory
  11. url=https://github.com/ultralytics/yolov5/releases/download/v1.0/
  12. f='coco128.zip' # or 'coco128-segments.zip', 68 MB
  13. echo 'Downloading' $url$f ' ...'
  14. curl -L $url$f -o $f && unzip -q $f -d $d && rm $f &
  15. wait # finish background tasks