# RT-DETRv2-R50 > RT-DETRv2-R50: transformer object detector from the RT-DETRv2 family. Available in LibreYOLO, the MIT-licensed open-source library (free for commercial use). - Family: RT-DETRv2 (Baidu) - Parameters: 42.0M - GFLOPs: 136.0 - Default input size: 640px - Detection: detr · nms-free - Architecture: transformer · PResNet backbone - Weight license: Apache-2.0 - Paper-reported mAP@50-95: 53.4% - Paper: https://arxiv.org/abs/2407.17140 - Original code: https://github.com/lyuwenyu/RT-DETR/tree/main/rtdetrv2_pytorch ## Benchmarks (COCO val2017) | Hardware | Runtime | mAP@50-95 | FPS | Latency (ms) | VRAM (MB) | |---|---|---|---|---|---| | NVIDIA Jetson Orin Nano Super 8GB | ONNX Runtime FP32 | 55.7 | 4.4 | 227.4 | - | | NVIDIA Jetson Orin Nano Super 8GB | PyTorch FP32 | 55.7 | 4.3 | 233.4 | 323 | | NVIDIA Jetson Orin Nano Super 8GB | TensorRT FP16 | 55.7 | 24.2 | 41.3 | - | | NVIDIA Jetson Orin Nano Super 8GB | TensorRT FP32 | 55.7 | 12.7 | 78.6 | - | | NVIDIA RTX 5070 Ti | ONNX Runtime FP32 | 55.6 | 66.0 | 15.2 | - | | NVIDIA RTX 5070 Ti | PyTorch FP32 | 55.7 | 32.1 | 31.1 | 327 | | NVIDIA RTX 5070 Ti | TensorRT FP16 | 55.7 | 103.6 | 9.7 | - | | NVIDIA RTX 5070 Ti | TensorRT FP32 | 55.7 | 88.5 | 11.3 | - | | Raspberry Pi 5 | ONNX Runtime FP32 | 55.7 | 0.6 | 1785.3 | - | | Raspberry Pi 5 | PyTorch FP32 | 55.7 | 0.3 | 3317.3 | - | ## Usage with LibreYOLO ```python from libreyolo import LibreYOLO model = LibreYOLO("LibreRTDETRv2r50.pt") result = model("image.jpg", conf=0.25, iou=0.45) ``` Source: https://www.visionanalysis.org/model/rtdetrv2-r50. Benchmarks produced with LibreYOLO (https://github.com/Libre-YOLO/libreyolo).