YOLO26 is the current recommended Ultralytics model generation for real-time vision AI: faster, more accurate, production-ready, and available across the core YOLO task family.
This pinned issue is the launch hub for users who want the latest Ultralytics models, examples, docs, and upgrade path in one place.
What shipped
- YOLO26 detection with end-to-end, NMS-free inference support for simpler deployment paths.
- Six vision tasks in one framework: detection, instance segmentation, semantic segmentation, classification, pose estimation, and oriented bounding boxes.
- Five model scales:
n, s, m, l, and x, from edge devices to high-accuracy workloads.
- Automatic weight downloads from official Ultralytics releases on first use.
- Production workflows for train, val, predict, track, benchmark, and export.
Start here
Quickstart: CLI
pip install -U ultralytics
# Predict with the smallest YOLO26 detection model
yolo predict model=yolo26n.pt source=https://ultralytics.com/images/bus.jpg imgsz=640
# Train on a small detection dataset
yolo train data=coco8.yaml model=yolo26n.pt epochs=10 imgsz=640
# Validate a pretrained model
yolo val data=coco8.yaml model=yolo26n.pt imgsz=640
# Export for deployment
yolo export model=yolo26n.pt format=onnx imgsz=640
Quickstart: Python
from ultralytics import YOLO
# Load an official YOLO26 model. Weights download automatically on first use.
model = YOLO("yolo26n.pt")
# Run inference
results = model("https://ultralytics.com/images/bus.jpg", imgsz=640)
# Train, validate, and export
model.train(data="coco8.yaml", epochs=10, imgsz=640)
metrics = model.val(data="coco8.yaml", imgsz=640)
model.export(format="onnx", imgsz=640)
Task examples
# Detection
yolo predict model=yolo26n.pt source=https://ultralytics.com/images/bus.jpg
# Instance segmentation
yolo segment predict model=yolo26n-seg.pt source=https://ultralytics.com/images/bus.jpg
# Semantic segmentation
yolo semantic predict model=yolo26n-sem.pt source=https://ultralytics.com/images/bus.jpg imgsz=1024
# Classification
yolo classify predict model=yolo26n-cls.pt source=https://ultralytics.com/images/bus.jpg
# Pose estimation
yolo pose predict model=yolo26n-pose.pt source=https://ultralytics.com/images/bus.jpg
# Oriented bounding boxes
yolo obb predict model=yolo26n-obb.pt source=https://ultralytics.com/images/boats.jpg
# Multi-object tracking
yolo track model=yolo26n.pt source=https://youtu.be/LNwODJXcvt4 tracker=botsort.yaml
Useful model and dataset links
Need help?
For usage questions, include your command, model name, dataset YAML, and yolo checks output. For bugs, please open a focused issue with a minimum reproducible example: https://docs.ultralytics.com/help/minimum-reproducible-example
YOLO26 is the recommended starting point for new Ultralytics projects. Older YOLOv3 and YOLOv5 repositories remain available for legacy workflows, but new models and active development live here in ultralytics/ultralytics.
YOLO26 is the current recommended Ultralytics model generation for real-time vision AI: faster, more accurate, production-ready, and available across the core YOLO task family.
This pinned issue is the launch hub for users who want the latest Ultralytics models, examples, docs, and upgrade path in one place.
What shipped
n,s,m,l, andx, from edge devices to high-accuracy workloads.Start here
Quickstart: CLI
Quickstart: Python
Task examples
Useful model and dataset links
Need help?
For usage questions, include your command, model name, dataset YAML, and
yolo checksoutput. For bugs, please open a focused issue with a minimum reproducible example: https://docs.ultralytics.com/help/minimum-reproducible-exampleYOLO26 is the recommended starting point for new Ultralytics projects. Older YOLOv3 and YOLOv5 repositories remain available for legacy workflows, but new models and active development live here in
ultralytics/ultralytics.