From Ultralytics
Deploy Ultralytics YOLO models with the AI Manager.

Exporting a YOLO Model for the AI Manager
Step 1: Install Ultralytics
Step 2: Export the Model to ONNX
Step 3: Upload to AI Manager Cloud
Upload your modelLast updated
Deploy Ultralytics YOLO models with the AI Manager.

Ultralytics develops and maintains popular open-source computer vision libraries including YOLOv8 and YOLO11. These are state-of-the-art object detection models well suited for edge deployment with the AI Manager.
For a list of pre-built YOLO models that are already available in the AI Manager Cloud catalogue, see Common Models.
To use a custom or fine-tuned YOLO model with the AI Manager, export it to ONNX format and then upload it to the AI Manager Cloud.
Replace yolov8n.pt with your own model checkpoint if you have trained a custom model:
This produces a yolov8n.onnx file in the current directory. The ONNX export is compatible with the AI Manager's CPU, Intel OpenVino, and NVIDIA CUDA runtimes.
If your model uses a non-standard input size, pass imgsz=<size> to the export command, for example yolo export model=yolov8n.pt format=onnx imgsz=640.
Upload the .onnx file to the AI Manager Cloud. The platform automatically converts it for all supported AI accelerators.
Last updated
pip install ultralyticsyolo export model=yolov8n.pt format=onnx