YOLO26 on Roboflow Vision AI
Published Jan 14, 2026 • 6 min read
SUMMARY
YOLO26 is the January 2026 generation of the YOLO family: an edge-optimized, NMS-free multi-task model covering detection, segmentation, classification, pose, and oriented bounding boxes, with up to 43% faster CPU inference than YOLO11 across five sizes from Nano to Extra Large. It ships under AGPL-3.0 and trains and deploys in Roboflow alongside RF-DETR, which outperforms it on accuracy and domain transfer under a commercially permissive Apache 2.0 license.

YOLO models are a family of real-time computer vision models covering object detection, segmentation, pose estimation, classification, and oriented object detection. Their combination of speed and accuracy has made them a fixture on edge devices and in cloud APIs alike.

In this post, we examine YOLO26, released January 2026: its key improvements, its benchmarks, how it compares to other leading computer vision models, and how to train and deploy it.

💡
Roboflow supports YOLO26 end to end: label data, train YOLO26 in your browser on hosted GPUs, and deploy to an API or edge device. Start free.

What Is YOLO26?

YOLO26 is a multi-task model family designed to handle a broad range of computer vision tasks, including object detection, instance segmentation, image classification, pose estimation, and oriented object detection. The lineup features multiple size variants Nano (N), Small (S), Medium (M), Large (L), and Extra Large (X) to cater to different performance and deployment needs.

Compared to previous YOLO generations, YOLO26 is optimized for edge deployment, featuring faster CPU inference, a more compact model design, and a simplified architecture for improved compatibility across diverse hardware environments. Notable improvements include decreased latency by removing NMS and results staying consistent in fp16 and fp32, making it possible to run the model in an optimized, low-latency way and get the same high accuracy you saw during training.

Try YOLO26 on Images

See how YOLO26 performs on images for common objects included in the COCO dataset. Test out how the model handles your data below.

To compare YOLO26 against RF-DETR, SAM 3, and other models side by side on your own images, use Roboflow Model Playground.

Download YOLO26

The table below links the object detection checkpoints and shows reported benchmarks across sizes:

Modelsize
(pixels)
mAPval
50-95
Speed
CPU ONNX
(ms)
Speed
T4 TensorRT10
(ms)
params
(M)
FLOPs
(B)
YOLO26n64040.938.9 ± 0.71.7 ± 0.02.45.4
YOLO26s64048.687.2 ± 0.92.5 ± 0.09.520.7
YOLO26m64053.1220.0 ± 1.44.7 ± 0.120.468.2
YOLO26l64055.0286.2 ± 2.06.2 ± 0.224.886.4
YOLO26x64057.5525.8 ± 4.011.8 ± 0.255.7193.9

The tradeoff runs from Nano's 1.7 ms T4 latency to Extra Large's 57.5 mAP. For other task types, see the YOLO26 GitHub.

💡
You do not need to download weights to use YOLO26 on your own data: create a free Roboflow project, label your images with Auto Label, and train YOLO26 with Custom Training, no GPU or local environment required.

YOLO26 Architecture

YOLO26 introduces several major improvements including:

  • Broader Device Support: It removes the Distribution Focal Loss (DFL) module, simplifying inference, enabling multiple export formats (TFLite, CoreML, OpenVINO, TensorRT, and ONNX), and broadening support for edge and low-power devices.
  • Enhanced Small-Object Recognition: It utilizes the ProgLoss and STAL loss functions, improving detection accuracy, particularly for small objects, and providing significant advantages for IoT, robotics, and aerial imagery applications.
  • End-to-End Predictions: It eliminates Non-Maximum Suppression (NMS) as a post-processing step, producing predictions directly to reduce latency and make deployment in real-world systems faster, lighter, and more reliable.
  • Faster CPU Inference: Optimizations in model design and training make YOLO26 faster on CPUs compared to YOLO11. For instance, the YOLO26-N variant delivers up to 43% faster CPU inference than the YOLO11-N, making YOLO26 ideal for real-time performance on devices without a GPU.
  • Improved Training: It introduces the MuSGD optimizer, a hybrid of SGD and Muon inspired by Kimi K2 LLM breakthroughs, ensuring stable training and faster convergence by transferring optimization advances from large language models to computer vision.
RF-DETR Neural Architecture Search (NAS) is faster and more accurate than YOLO26: it trains multiple configurations on your dataset and recommends the best accuracy-latency fit. Read the blog post or try it on your data.

Can I Use YOLO26 Commercially?

YOLO26 ships under the AGPL-3.0 license, which requires open-sourcing derivative works unless you hold a commercial license. A Roboflow Enterprise license includes a pass-through license for commercial YOLO use with Roboflow Inference (talk to sales), or train RF-DETR, whose core models and code are Apache 2.0, with no copyleft obligations and nothing to purchase.

Use YOLO26 in Roboflow

YOLO26 is a fully supported model in Roboflow for object detection, instance segmentation, and keypoint detection: train it with Custom Training on hosted GPUs, upload externally trained weights, export weights, and deploy through the Serverless Hosted API, Roboflow Workflows, or on-device with Roboflow Inference. The full loop, labeling with Auto Label through deployment, runs in one platform; see YOLO26 in Roboflow for the walkthrough.

YOLO26 Monocular Depth Estimation (YOLO-Depth)

Beyond detection, segmentation, classification, pose, and OBB, YOLO26 supports a sixth task: monocular depth estimation. Given a single RGB image, the YOLO26-depth models predict a dense depth map, a float tensor aligned to the input resolution where every pixel holds an estimated distance in meters from the camera.

Modeldelta1abs_relRMSEParamsFLOPs
YOLO26n-depth0.8820.1090.414m6.4M46.9B
YOLO26s-depth0.8960.1040.399m13.2M67.9B
YOLO26m-depth0.9210.0890.364m23.3M130.7B
YOLO26l-depth0.9300.0830.351m27.7M157.2B
YOLO26x-depth0.9330.0800.344m57.0M302.0B

Benchmarks are reported at 768px on the NYU Depth V2 Eigen test split with test-time augmentation, so expect somewhat lower accuracy in single-pass production inference, and note that NYU is an indoor benchmark. The output is metric depth, not relative depth.

For per-object distance in production today, you can pair RF-DETR detections with the Depth Estimation block in Roboflow Workflows.

YOLO26 Alternatives

Several multi-task models compete with YOLO26 and are benchmarked with open code on the object detection leaderboard.

RF-DETR

RF-DETR, developed by Roboflow, is a family of real-time detection transformers supporting object detection, segmentation, and keypoint tasks. RF-DETR outperforms YOLO26 across benchmarks, generalizes better across domains (it leads RF100-VL, the real-world transfer benchmark), runs on the edge with Inference, and ships under Apache 2.0.

For new detection projects, it is the model we recommend, and it trains in the same Roboflow flow as YOLO26, so comparing the two on your dataset is an architecture dropdown, not a platform change.

LW-DETR

Light-Weight Detection Transformer (LW-DETR), released June 2024, combines a Vision Transformer with the DETR decoder, integrating multi-level feature representations for accurate, robust predictions that outperform YOLO11 on both accuracy and speed.

D-FINE

D-FINE, released October 2024, introduces Fine-grained Distribution Refinement (FDR), iteratively refining bounding box distributions for greater localization precision, particularly on small or overlapping objects, while preserving real-time performance.

YOLO26 Paper

As of June 2026, there is a YOLO26 paper "Ultralytics YOLO26: Unified Real-Time End-to-End Vision Models". YOLO26 ditches two long-standing bottlenecks: non-maximum suppression and Distribution Focal Loss.

New training tricks (the MuSGD optimizer, Progressive Loss, and STAL label assignment) improve accuracy, including on small objects. One pipeline handles detection, segmentation, pose, classification, and oriented detection across five scales, plus an open-vocabulary YOLOE-26 extension.

It reports 40.9–57.5 mAP on COCO at 1.7–11.8 ms T4 latency, pushing the accuracy-latency Pareto front past prior real-time YOLO detectors.

Get Started with YOLO26

Try YOLO26 in the embed above, then put a model to work on your own data: create a free Roboflow account, label a dataset, and train YOLO26 and RF-DETR back to back to see which wins on your images.

Read more:

  • YOLO27: expected at YOLO Vision 2026 in Shenzhen, expands the YOLO family into 3D perception with two models
  • YOLO-Depth: monocular depth estimation from a single camera
  • YOLO-StereoDepth: binocular disparity depth for robotics, positioned as a camera-native alternative to lidar
  • Training a YOLO model: a walk through of how to train YOLO models in Roboflow

Cite this Post

Use the following entry to cite this post in your research:

Erik Kokalj. (Jan 14, 2026). What Is YOLO26? An Introduction. Roboflow Blog: https://blog.roboflow.com/yolo26/

Written by

Erik Kokalj
Developer Experience @ Roboflow