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.

download_weights.sh 228B

4 年之前
4 年之前
12345678910
  1. #!/bin/bash
  2. # Download latest models from https://github.com/ultralytics/yolov5/releases
  3. python - <<EOF
  4. from utils.google_utils import attempt_download
  5. for x in ['s', 'm', 'l', 'x']:
  6. attempt_download(f'yolov5{x}.pt')
  7. EOF