Vision Analysis
Back to Leaderboard

YOLO11-N

yolo11Coming Soon

one-stage detector with CSPDarknet backbone

Parameters2.6M
GFLOPs6.5
Input Size640px
Best mAP38.7%
Licensenon-permissive

Architecture

Type

one-stage

Backbone

CSPDarknet

Neck

C3k2-PAFPN

Head

Decoupled

Benchmark Results

Performance on COCO val2017 across different hardware configurations

HardwareRuntimemAP@50-95FPSLatencyVRAM
NVIDIA Jetson Orin Nano Super 8GBONNX Runtime FP3238.7%8.2121.5ms-
NVIDIA Jetson Orin Nano Super 8GBPyTorch FP3238.7%22.943.8ms66 MB
NVIDIA Jetson Orin Nano Super 8GBTensorRT FP1638.7%52.619.0ms14 MB
Raspberry Pi 5ncnn FP3238.7%12.281.7ms-
Raspberry Pi 5ONNX Runtime FP3238.7%6.2162.2ms-
Raspberry Pi 5PyTorch FP3238.7%4.9204.7ms-

Speed Breakdown(NVIDIA Jetson Orin Nano Super 8GB)

6.4ms
99.1ms
9.9ms
Preprocess
Inference
Postprocess (NMS)
anchor-freenmsPaper: 39.5% mAP

Related Models (yolo11)

Run any model with one line

LibreYOLO has the best catalogue of state-of-the-art detectors, all behind one MIT-licensed Python API.

from libreyolo import LibreYOLO, SAMPLE_IMAGE

# LibreYOLO has the best catalogue of state-of-the-art models.
model = LibreYOLO("LibreRFDETRl.pt")           # RF-DETR-L (transformer flagship)
results = model(SAMPLE_IMAGE, save=True)        # run inference, save the annotated image

# Swap in any other model, same one-line API (weights auto-download):
#   LibreYOLO("LibreYOLO9c.pt")      # YOLO9-C
#   LibreYOLO("LibreYOLOXx.pt")      # YOLOX-X
#   LibreYOLO("LibreDFINEx.pt")      # D-FINE-X
#   LibreYOLO("LibreRTDETRr50.pt")   # RT-DETR-R50