File size: 228 Bytes
1e84a23
6ff0d91
1e84a23
27138c2
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
#!/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