yolov5 / weights /download_weights.sh
glenn-jocher's picture
Update download_weights.sh (#1338)
6ff0d91 unverified
raw
history blame
No virus
228 Bytes
#!/bin/bash
# Download latest models from https://github.com/ultralytics/yolov5/releases
python - <<EOF
from utils.google_utils import attempt_download
for x in ['s', 'm', 'l', 'x']:
attempt_download(f'yolov5{x}.pt')
EOF