Vision Analysis
Back to Leaderboard

RT-DETR

rtdetrIn LibreYOLO

Baidu · CVPR 2024

Variants7
Parameters20.0M - 76.0M
Best Paper mAP54.8%
LicenseApache-2.0

Model Variants

All variants benchmarked on COCO val2017. Click any variant for the full hardware breakdown.

ModelParamsGFLOPsPaper mAPBest FPS
RT-DETR-R1820.0M60.046.5%
121 FPS
NVIDIA RTX 5070 Ti · TensorRT FP32
Details
RT-DETR-R3431.0M91.048.5%
108 FPS
NVIDIA RTX 5070 Ti · TensorRT FP16
Details
RT-DETR-L32.0M110.053%
122 FPS
NVIDIA RTX 5070 Ti · TensorRT FP16
Details
RT-DETR-R50m36.6M0.0-
110 FPS
NVIDIA RTX 5070 Ti · TensorRT FP16
Details
RT-DETR-R5042.0M136.053.1%
97 FPS
NVIDIA RTX 5070 Ti · TensorRT FP16
Details
RT-DETR-X67.0M234.054.8%
82 FPS
NVIDIA RTX 5070 Ti · TensorRT FP16
Details
RT-DETR-R10176.0M259.054.3%
88 FPS
NVIDIA RTX 5070 Ti · TensorRT FP16
Details

Architecture

Type

transformer

Backbone

ResNet-18

Neck

HybridEncoder

Head

DETR

detrnms-freeTrained on COCO train2017

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