Export, quantization & deployment

SkillCloud & infra

Use when exporting or deploying Ultralytics YOLO models in Platform or code — the Platform Export tab and yolo export/model.export() for ONNX, TensorRT, CoreML, Core AI, OpenVINO, LiteRT, NCNN, ExecuTorch, and NPUs (RKNN, QNN, Hailo, Ascend, IMX, Axelera, DeepX), FP16/INT8 quantization, benchmarking, and non-Python runtimes. For inference with .pt weights or Platform endpoints, see yolo-inference.

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the Export, quantization & deployment skill

What this skill tells your AI

The instructions your AI receives, as published by ultralytics/skills in skills/yolo-export/SKILL.md and read by ahel’s review.

Fastest route: export in Platform

Open a completed model's Export tab, select one of the 20 formats, configure its arguments, and click Start Export. Platform runs CPU exports directly and asks for a target GPU where the format requires one (notably TensorRT); download the artifact when the job completes. Match TensorRT's selected GPU family and software environment to the deployment target, just as with a local engine build.

Use Platform when you do not want to install each exporter toolchain locally. Use the Python/CLI path below for custom calibration, repeatable automation, local hardware builds, or immediate parity validation. See Platform model export.

Quickstart

from ultralytics import YOLO

model = YOLO("runs/detect/train/weights/best.pt")
path = model.export(format="onnx")  # returns the exported file/dir path
yolo export model=best.pt format=onnx

Exports load straight back into YOLO() for predict/val — same API:

model = YOLO("best.onnx")  # or best.engine, best_openvino_model/, ...

Choose format by target hardware

Targetformat=Why
NVIDIA GPU / Jetsonengine (TensorRT)fastest on NVIDIA; build on the deployment device — engines are not portable across GPUs/TRT versions
Intel CPU/iGPU/NPUopenvino~3× CPU speedup
Apple iOS/macOScoremlbroad OS coverage, Vision/iOS/Flutter support
Apple iOS 27+/macOS 27+coreainative .aimodel; use coreml for iOS/Flutter SDKs; export on Apple silicon/macOS 26+
Androidlitert (renamed from tflite) or ncnnNCNN strong on ARM
Raspberry Pincnnbest ARM CPU latency
PyTorch Edgeexecutorch
Cross-platform / unsureonnxruns everywhere; start here, specialize when latency demands
NPUs (Rockchip/Qualcomm/Hailo/Huawei/Sony/Axelera/DeepX)rknn / qnn / hailo / ascend / imx / axelera / deepxname= selects the exact chip for rknn/qnn/hailo/ascend

Full 21-target local export matrix with per-format supported args: format-matrix.md (this folder). Platform currently offers 20 deployment formats.

Key arguments

ArgDefaultNotes
imgszmodelinherited from the loaded model; set explicitly to the deployment shape
quantizeNoneprecision request: 16/fp16, 8/int8/w8a8, w8a16, w8a32, or 32/fp32; support, speed, size, and accuracy are backend-dependent — see format-matrix.md and benchmark the target
dataNonerepresentative calibration data when required; use >300 images generally and 500+ for TensorRT. Omission selects a small task default, so pass deployment-representative data explicitly
dynamicFalsevariable input shape/batch where supported; check format-matrix.md and benchmark the target
batch1max batch baked into the export
simplifyTruesimplify ONNX graph
opsetNonecompatible ONNX opset selected automatically when unset; pin lower if the consumer runtime complains
end2endNonepreserve the model setting; set False on YOLO26/YOLOv10 when the target needs raw outputs or conventional NMS
nmsFalsebake NMS into a raw-output pipeline where supported; for YOLO26/YOLOv10 also set end2end=False
workspaceNoneTensorRT builder GiB — lower if the build OOMs
deviceNonedevice=0 required for TensorRT; also speeds INT8 calibration
fraction1.0fraction of calibration data used

Verify parity after export (always)

yolo val model=best.pt data=data.yaml   # baseline
yolo val model=best.onnx data=data.yaml # compare the same task metric with the baseline

Acceptable differences depend on the task, model, backend, precision, and calibration data. Investigate unexpected gaps by matching imgsz and pre/post-processing and, where required, using representative calibration data. Also compare one prediction with .pt.

Benchmark all formats empirically

yolo benchmark model=best.pt data=data.yaml imgsz=640                                    # all formats at default precision
yolo benchmark model=best.pt data=data.yaml format=engine quantize=16 device=0 imgsz=640 # targeted FP16

Produces the task metric + latency per exportable format on this machine. Repeat for each supported precision and benchmark on deployment hardware, not your dev box.

Consuming exports outside Python

  • In raw runtimes (C++, mobile, JS) you own preprocessing (letterbox resize, BGR→RGB, /255) and output decoding.
  • Detect output layout differs: end-to-end YOLO26 emits final [x1,y1,x2,y2,conf,cls] rows. If export disables end-to-end, YOLO26—like YOLO11/v8—emits raw [4+nc, anchors] heads; where supported, nms=True wraps them. Set end2end=False nms=True to request that path explicitly. Segment, pose, and OBB add task-specific outputs. Check export warnings and shapes.
  • Class names travel in export metadata where supported; otherwise ship the names map alongside the model.
  • Serving: ultralytics.utils.triton.TritonRemoteModel for Triton; examples/ in the ultralytics repo has ONNXRuntime C++/Rust/Python references.

Troubleshooting

SymptomFix
Export crashes on missing packagemost backends auto-install on first export; rerun. TensorRT must match your CUDA — install per NVIDIA docs
Unsupported ONNX opset downstreamexport with lower opset=, or upgrade the runtime
TensorRT build OOM/slowlower workspace, batch=1, dynamic=False
Export much less accurateimgsz mismatch; too little/unrepresentative calibration data; wrong custom pre/post-processing; use a supported higher precision or backend
Engine fails on another machineTensorRT engines are device+version specific — rebuild on target
CoreML export fails on Windowsexport on macOS or Linux
Core AI export is unavailablerequires Apple silicon, macOS 26+, torch>=2.8, and Python 3.11–3.13; use Core ML for broader production support
Deprecation warnings for half/int8/tfliteauto-forwarded (half→quantize=16, int8→quantize=8, tflite→litert) — switch to the new names

Related pages

  • format-matrix.md — all 21 local export targets, artifacts produced, and supported args. Read when using any format beyond onnx/engine/openvino/coreml.

If the installed version rejects an argument, trust the error text (it lists valid values) and yolo cfg over this file.

Signals

GitHub stars
22
Last commit
Sep 2026
Advanced
Catalog kind
skill
Gateway key
yolo-export
Source
github.com/ultralytics/skills