File size: 482 Bytes
1e84a23 3fef117 6ff0d91 3fef117 0ad6301 1e84a23 27138c2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
#!/bin/bash
# YOLOv5 π by Ultralytics https://ultralytics.com, licensed under GNU GPL v3.0
# Download latest models from https://github.com/ultralytics/yolov5/releases
# Example usage: bash path/to/download_weights.sh
# parent
# βββ yolov5
# βββ yolov5s.pt β downloads here
# βββ yolov5m.pt
# βββ ...
python - <<EOF
from utils.google_utils import attempt_download
for x in ['s', 'm', 'l', 'x']:
attempt_download(f'yolov5{x}.pt')
EOF
|