選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

13 行
277B

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