diff --git a/docs/docs/configuration/object_detectors.md b/docs/docs/configuration/object_detectors.md index 961fb94806..c50e732455 100644 --- a/docs/docs/configuration/object_detectors.md +++ b/docs/docs/configuration/object_detectors.md @@ -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 ```