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.

9 lines
244B

  1. #!/bin/bash
  2. # Download common models
  3. python3 -c "from utils.google_utils import *;
  4. attempt_download('weights/yolov5s.pt');
  5. attempt_download('weights/yolov5m.pt');
  6. attempt_download('weights/yolov5l.pt');
  7. attempt_download('weights/yolov5x.pt')"