This repository provides YOLO26 detection models exported to ONNX format, for use with ONNX Runtime or any ONNX-compatible inference engine.
These models are not my work. YOLO26 was developed by Ultralytics and is distributed under the AGPL-3.0 license. I am sharing these pre-exported ONNX versions as a convenience for those who prefer not to handle the export step themselves.
Models
Variant
File
Nano
yolo26n.onnx
Small
yolo26s.onnx
Medium
yolo26m.onnx
Large
yolo26l.onnx
XLarge
yolo26x.onnx
All models were exported from the official Ultralytics .pt checkpoints using:
Export: ONNX opset 18, no modifications to weights or architecture
If you intend to use these models in a commercial product, you will need a commercial license from Ultralytics. See ultralytics.com/license.
Why this repo exists
Exporting YOLO26 to ONNX requires a working Python environment with Ultralytics installed. This repo saves that step. If you prefer to export yourself, follow the official Ultralytics export guide.