File tree Expand file tree Collapse file tree 1 file changed +21
-0
lines changed
Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Original file line number Diff line number Diff 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 >
You can’t perform that action at this time.
0 commit comments