Back to Leaderboard
Parameters
15.4M
FLOPs
59.1G
Input Size
640px
License
MIT
Architecture
Type
one-stage
Backbone
CSPDarknet
Neck
PAFPN
Head
NMS-Free
Benchmark Results
Performance on COCO val2017 across different hardware configurations
| Hardware | mAP@50-95 | FPS | Latency | VRAM |
|---|---|---|---|---|
| NVIDIA A100 (TensorRT FP16) | 51.0% | 185.2 | 5.4ms | 843 MB |
| NVIDIA T4 (TensorRT FP16) | 51.0% | 76.6 | 13.1ms | 761 MB |
| CPU (ONNX Runtime) | 51.1% | 9.4 | 106.1ms | 727 MB |
Speed Breakdown (A100 TensorRT)
End-to-end latency breakdown showing preprocessing, inference, and postprocessing times
1.1ms
4.2ms
0.1ms
Preprocess
Inference
Postprocess (NMS)
Usage with LibreYOLO
from libreyolo import YOLO
# Load model
model = YOLO.from_pretrained("https://huggingface.co/Libre-YOLO/yolov10m")
# Run inference
results = model.predict("image.jpg")
# Process results
for box in results.boxes:
print(f"Class: {box.cls}, Confidence: {box.conf:.2f}")nms-freebalanced