Skip to content

Commit 1ae02f8

Browse files
committed
Add YOLOv11 docs
1 parent 06b6143 commit 1ae02f8

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

docs/features/object_detection.mdx

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,27 @@ You need to define the following config variables to enable object detection wit
186186
--half
187187
```
188188
</details>
189+
* `yolov11`: [YOLOv11](https://github.com/ultralytics/ultralytics) model
190+
<details>
191+
<summary>Export YOLOv11 to ONNX</summary>
192+
193+
```bash
194+
pip install ultralytics
195+
196+
# Export with FP32 precision
197+
yolo export \
198+
model=yolov11n.pt \
199+
format=onnx \
200+
simplify=True
201+
202+
# Export with FP16 precision (CUDA-compatible GPU is required)
203+
yolo export \
204+
model=yolov11n.pt \
205+
format=onnx \
206+
simplify=True \
207+
half=True
208+
```
209+
</details>
189210
* `yolo-nas`: [YOLO-NAS](https://github.com/Deci-AI/super-gradients) model
190211
<details>
191212
<summary>Export YOLO-NAS to ONNX</summary>

0 commit comments

Comments
 (0)