From 5ca308409d34af8c0b1e2513cf9e1a26d0fdf877 Mon Sep 17 00:00:00 2001 From: Felipe Santos Date: Sun, 20 Jul 2025 12:04:44 -0300 Subject: [PATCH] Mention available models --- docs/docs/configuration/object_detectors.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/configuration/object_detectors.md b/docs/docs/configuration/object_detectors.md index 70de120a9..c12853e01 100644 --- a/docs/docs/configuration/object_detectors.md +++ b/docs/docs/configuration/object_detectors.md @@ -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'