# RT-DETRv2-R101 > RT-DETRv2-R101: 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: 76.0M - GFLOPs: 259.0 - Default input size: 640px - Detection: detr · nms-free - Architecture: transformer · PResNet backbone - Weight license: Apache-2.0 - Paper-reported mAP@50-95: 54.3% - 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 | 56.8 | 2.9 | 343.3 | - | | NVIDIA Jetson Orin Nano Super 8GB | PyTorch FP32 | 56.8 | 2.8 | 358.7 | 450 | | NVIDIA Jetson Orin Nano Super 8GB | TensorRT FP16 | 56.8 | 17.3 | 57.7 | - | | NVIDIA Jetson Orin Nano Super 8GB | TensorRT FP32 | 56.8 | 8.5 | 118.2 | - | | NVIDIA RTX 5070 Ti | ONNX Runtime FP32 | 56.8 | 49.3 | 20.3 | - | | NVIDIA RTX 5070 Ti | PyTorch FP32 | 56.8 | 25.7 | 39.0 | 456 | | NVIDIA RTX 5070 Ti | TensorRT FP16 | 56.8 | 87.4 | 11.4 | - | | NVIDIA RTX 5070 Ti | TensorRT FP32 | 56.8 | 64.8 | 15.4 | - | | Raspberry Pi 5 | ONNX Runtime FP32 | 56.7 | 0.3 | 3042.7 | - | ## Usage with LibreYOLO ```python from libreyolo import LibreYOLO model = LibreYOLO("LibreRTDETRv2r101.pt") result = model("image.jpg", conf=0.25, iou=0.45) ``` Source: https://www.visionanalysis.org/model/rtdetrv2-r101. Benchmarks produced with LibreYOLO (https://github.com/Libre-YOLO/libreyolo).