Vision Analysis
Back to Leaderboard

YOLOv8-M

yolov8Coming Soon

one-stage detector with CSPDarknet backbone

Parameters25.9M
GFLOPs78.9
Input Size640px
Best mAP49.4%
Licensenon-permissive

Architecture

Type

one-stage

Backbone

CSPDarknet

Neck

C2f-PAFPN

Head

Decoupled

Benchmark Results

Performance on COCO val2017 across different hardware configurations

HardwareRuntimemAP@50-95FPSLatencyVRAM
NVIDIA Jetson Orin Nano Super 8GBONNX Runtime FP3249.4%1.4740.5ms-
NVIDIA Jetson Orin Nano Super 8GBPyTorch FP3249.4%12.282.1ms161 MB
NVIDIA Jetson Orin Nano Super 8GBTensorRT FP1649.4%24.640.6ms14 MB
Raspberry Pi 5HailoRT INT842.4%26.737.4ms-
Raspberry Pi 5ncnn FP3249.4%2.8363.1ms-
Raspberry Pi 5ONNX Runtime FP3249.4%1.0972.3ms-
Raspberry Pi 5PyTorch FP3249.4%1.1906.5ms-

Speed Breakdown(NVIDIA Jetson Orin Nano Super 8GB)

6.1ms
719.2ms
9.3ms
Preprocess
Inference
Postprocess (NMS)
anchor-freenmsPaper: 50.2% mAP

Related Models (yolov8)

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