Vision Analysis
LeaderboardNVIDIA Jetson Orin Nano Super 8GB · TensorRT FP16As of Aug 9, 2026
#ModelFamilymAPFPSLatencyParams
1D-FINE-Xdfine61.4%14.270.5ms62.0M
2ECDet-Xec61.0%5.7174.8ms49.0M
3DEIMv2-Xdeimv260.8%5.4184.5ms50.3M
4ECDet-Lec60.0%6.2161.5ms31.0M
5D-FINE-Ldfine60.0%18.653.6ms31.0M
6RT-DETRv4-Xrtdetrv460.0%13.872.7ms62.0M
7DEIM-Xdeim59.6%14.170.9ms62.0M
8RF-DETR-Lrfdetr58.7%8.4119.3ms128.0M
9DEIMv2-Ldeimv258.5%6.2160.8ms32.2M
10ECDet-Mec58.3%8.3119.7ms18.0M
COCO val2017 · ranked by mAP@50-95visionanalysis.org

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