RT-DETR vs YOLOX
Compare RT-DETR and YOLOX side-by-side.
Compare RT-DETR vs YOLOX live
Run the same image across every model that supports a task and compare their outputs side-by-side.
These models don't share enough common tasks for a side-by-side demo. See the comparison table below for their capabilities.
Models in this comparison
RT-DETR vs YOLOX Comparison Table
Evals updated August 6, 2026Pricing updated August 7, 2026
| Property | RT-DETR | YOLOX |
|---|---|---|
| Organization | Baidu | Megvii |
| Category | open | open |
| Modality | vision | vision |
| Release Date | Apr 2023 | Jul 2021 |
| Context Window | — | — |
| Parameters | 20M-76M | 0.91M-99.1M |
| License | Apache 2.0 | Apache 2.0 |
| Vision Tasks | ||
| Object Detection | ||
| Model Features | ||
| Real-Time Vision | ||
RT-DETR vs YOLOX: Overview
RT-DETR (Real-Time Detection Transformer) is an object detection model developed by Baidu, released in April 2023 under the Apache 2.0 license. It is the first transformer-based real-time object detector, addressing the inference speed limitations of earlier DETR models through an efficient hybrid encoder that decouples intra-scale interaction and cross-scale fusion, enabling the model to process multi-scale features without the high computational overhead of standard transformer encoders.
RT-DETR achieves 53.1% AP on COCO at 108 FPS on an NVIDIA T4 GPU for the RT-DETR-L variant, outperforming comparably sized YOLO detectors at similar speeds. It maintains end-to-end inference without non-maximum suppression, simplifying deployment pipelines. RT-DETR established the baseline for real-time transformer detection and has been extended by subsequent works including RF-DETR and RT-DETRv2.
YOLOX is an anchor-free object detection model developed by Megvii (Face++), released in July 2021 under the Apache 2.0 license. It applies anchor-free detection to the YOLO framework, decoupling the classification and regression heads to allow each to optimize independently, and introduces the SimOTA label assignment strategy for improved training convergence. YOLOX achieves strong accuracy-speed tradeoffs and outperforms YOLOv5 on COCO at comparable model sizes.
YOLOX-L achieves 50.0% AP on COCO at 68.9 FPS on an NVIDIA V100 GPU. The model is available in a range of sizes from YOLOX-Nano to YOLOX-X and supports deployment through ONNX, TensorRT, and other standard export formats. It is suitable for real-time object detection applications and has been widely adopted in industrial and research detection pipelines.