Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

download_weights.sh 244B

il y a 4 ans
il y a 4 ans
il y a 4 ans
12345678
  1. #!/bin/bash
  2. # Download common models
  3. python3 -c "from utils.google_utils import *;
  4. attempt_download('weights/yolov5s.pt');
  5. attempt_download('weights/yolov5m.pt');
  6. attempt_download('weights/yolov5l.pt');
  7. attempt_download('weights/yolov5x.pt')"