Co-DETR vs RT-DETR
Compare Co-DETR and RT-DETR side-by-side.
Compare Co-DETR vs RT-DETR 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
Co-DETR vs RT-DETR Comparison Table
Evals updated July 10, 2026Pricing updated July 21, 2026
| Property | Co-DETR | RT-DETR |
|---|---|---|
| Organization | OpenMMLab | Baidu |
| Category | open | open |
| Modality | vision | vision |
| Release Date | Nov 2022 | Apr 2023 |
| Context Window | — | — |
| Parameters | 304M | 20M-76M |
| License | MIT | Apache 2.0 |
| Vision Tasks | ||
| Object Detection | ||
| Model Features | ||
| Real-Time Vision | ||
Co-DETR vs RT-DETR: Overview
Co-DETR (Co-Deformable-DETR) is an object detection model developed by researchers at Sense-X and OpenMMLab, released in November 2022. It improves upon standard DETR-based detectors by introducing a collaborative hybrid assignment training scheme that enables the encoder to learn from multiple auxiliary heads simultaneously, alongside the primary one-to-one assignment used during inference. This auxiliary supervision significantly accelerates convergence and improves overall detection accuracy without adding inference cost.
Co-DETR is evaluated on the COCO benchmark, where it achieves 59.5% AP when applied to DINO-Deformable-DETR with a Swin-L backbone. With a ViT-L backbone it reaches 66.0% AP on COCO test-dev, outperforming prior methods at comparable model scales. It is suitable for high-accuracy object detection tasks where training efficiency and peak performance on standard benchmarks are priorities.
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.