Mention available models

This commit is contained in:
Felipe Santos 2025-07-20 12:04:44 -03:00 committed by GitHub
parent 9320514155
commit 5ca308409d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1032,7 +1032,7 @@ python3 yolo_to_onnx.py -m yolov7-320
#### YOLOv9
YOLOv9 model can be exported as ONNX using the below command:
YOLOv9 model can be exported as ONNX using the command below. You can copy and paste the whole thing to your terminal and execute, altering `MODEL_SIZE=t` in the first line to the [model size](https://github.com/WongKinYiu/yolov9#performance) you would like to convert (available sizes are `t`, `s`, `m`, `c`, and `e`).
```sh
docker build . --build-arg MODEL_SIZE=t --output . -f- <<'EOF'