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

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