Update download_weights.sh (#1338)

This commit is contained in:
Glenn Jocher 2020-11-10 14:28:45 +01:00 committed by GitHub
parent 67bf9a974e
commit 27138c2ebb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 8 deletions

View File

@ -1,10 +1,10 @@
#!/bin/bash
# Download common models
# Download latest model from https://github.com/ultralytics/yolov5/releases
python -c "
from utils.google_utils import *;
attempt_download('weights/yolov5s.pt');
attempt_download('weights/yolov5m.pt');
attempt_download('weights/yolov5l.pt');
attempt_download('weights/yolov5x.pt')
"
python - <<EOF
from utils.google_utils import attempt_download
for x in ['s', 'm', 'l', 'x']:
attempt_download(f'yolov5{x}.pt')
EOF