CoolFace
Modelpublic

openvision/yolo26-s-cls

sourceHugging Faceagpl-3.0updated 8mo agoView on Hugging Face
0likes163downloads
Model Card

YOLO26-S-cls

Ultralytics YOLO26 is the latest evolution in the YOLO series, engineered from the ground up for edge and low-power devices. This is the classification variant optimized for image classification tasks.

Model Specifications

PropertyValue
Input Size224 pixels
Top-1 Accuracy76.0%
Top-5 Accuracy92.9%
CPU Speed (ONNX)7.9 ms
T4 TensorRT10 Speed1.3 ms
Parameters6.7M
FLOPs1.6B

Key Features

The architecture of YOLO26 is guided by three core principles:

Simplicity: YOLO26 is a native end-to-end model, producing predictions directly without the need for non-maximum suppression (NMS). By eliminating this post-processing step, inference becomes faster, lighter, and easier to deploy in real-world systems.

Deployment Efficiency: The end-to-end design cuts out an entire stage of the pipeline, dramatically simplifying integration, reducing latency, and making deployment more robust across diverse environments.

Training Innovation: YOLO26 introduces the MuSGD optimizer, a hybrid of SGD and Muon — inspired by Moonshot AI's Kimi K2 breakthroughs in LLM training. This optimizer brings enhanced stability and faster convergence.

Additional Highlights

  • —DFL Removal: Simplified inference and broader hardware compatibility
  • —Up to 43% Faster CPU Inference: Optimized for edge computing
  • —MuSGD Optimizer: Advanced optimization methods from LLM training

Usage

Install ultralytics with pip install ultralytics.

Download the model.

python
from huggingface_hub import hf_hub_download

model_path = hf_hub_download(repo_id="openvision/yolo26-s-cls", filename="model.pt")

Infer.

python
from ultralytics import YOLO
from PIL import Image
import requests

model = YOLO(model_path)

url = 'http://images.cocodataset.org/val2017/000000039769.jpg'
image = Image.open(requests.get(url, stream=True).raw)

# Run inference with the YOLO26s-cls model on the image
results = model.predict(image)

Documentation

For more information, see the official YOLO26 documentation.