No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

18 líneas
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