Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

download_weights.sh 277 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
  1. #!/bin/bash
  2. # Download latest models from https://github.com/ultralytics/yolov5/releases
  3. # Usage:
  4. # $ bash weights/download_weights.sh
  5. python - <<EOF
  6. from utils.google_utils import attempt_download
  7. for x in ['s', 'm', 'l', 'x']:
  8. attempt_download(f'yolov5{x}.pt')
  9. EOF
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...