TensorRT转化代码
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
658B

  1. #!/bin/bash
  2. # YOLOv5 🚀 by Ultralytics https://ultralytics.com, licensed under GNU GPL v3.0
  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 'coco2017labels-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