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
618B

  1. #!/bin/bash
  2. # COCO128 dataset https://www.kaggle.com/ultralytics/coco128
  3. # Download command: bash data/scripts/get_coco128.sh
  4. # Train command: python train.py --data coco128.yaml
  5. # Default dataset location is next to /yolov5:
  6. # /parent_folder
  7. # /coco128
  8. # /yolov5
  9. # Download/unzip images and labels
  10. d='../' # unzip directory
  11. url=https://github.com/ultralytics/yolov5/releases/download/v1.0/
  12. f='coco128.zip' # or 'coco2017labels-segments.zip', 68 MB
  13. echo 'Downloading' $url$f ' ...'
  14. curl -L $url$f -o $f && unzip -q $f -d $d && rm $f & # download, unzip, remove in background
  15. wait # finish background tasks