This commit is contained in:
lichen
2022-04-08 16:44:51 +08:00
parent 495dde36af
commit d21e025191
78 changed files with 11455 additions and 0 deletions

12
weights/download_weights.sh Executable file
View File

@ -0,0 +1,12 @@
#!/bin/bash
# Download latest models from https://github.com/ultralytics/yolov5/releases
# Usage:
# $ bash weights/download_weights.sh
python - <<EOF
from utils.google_utils import attempt_download
for x in ['s', 'm', 'l', 'x']:
attempt_download(f'yolov5{x}.pt')
EOF