This commit is contained in:
Nicolas Mowen 2025-04-14 13:24:48 -06:00
parent a525374010
commit 0adfdca34b

View File

@ -978,6 +978,8 @@ python3 yolo_to_onnx.py -m yolov7-320
YOLOv9 models can be exported using the below code or they [can be downloaded from hugging face](https://huggingface.co/Xenova/yolov9-onnx/tree/main)
```sh
git clone https://github.com/WongKinYiu/yolov9
cd yolov9
wget -O yolov9-t.pt "https://github.com/WongKinYiu/yolov9/releases/download/v0.1/yolov9-t-converted.pt"
python3 export.py --weights ./yolov9-t.pt --imgsz 320 --simplify
```