AI SeedbankHelp preserve open and free AI for humanity's future

← All models

PekingU_rtdetr_v2_r50vd

PekingU · View on Hugging Face ↗

Get this model

Download TorrentMagnet Link

Seeders: 1 · Leechers: 0

Observed 2026-09-02T13:56:39Z via announce.aitorrent.org:7070.

Model card

The complete upstream card, rendered from this payload's README.md — the same hash-verified bytes the torrent distributes. Images and off-site links are removed; the original card on Hugging Face carries them.


library_name: transformers license: apache-2.0 language:


RT-DETRv2

Overview

The RT-DETRv2 model was proposed in RT-DETRv2: Improved Baseline with Bag-of-Freebies for Real-Time Detection Transformer by Wenyu Lv, Yian Zhao, Qinyao Chang, Kui Huang, Guanzhong Wang, Yi Liu. RT-DETRv2 refines RT-DETR by introducing selective multi-scale feature extraction, a discrete sampling operator for broader deployment compatibility, and improved training strategies like dynamic data augmentation and scale-adaptive hyperparameters. These changes enhance flexibility and practicality while maintaining real-time performance.

This model was contributed by @jadechoghari with the help of @cyrilvallez and @qubvel-hf

This is

Performance

RT-DETRv2 consistently outperforms its predecessor across all model sizes while maintaining the same real-time speeds.

How to use

import torch
import requests

from PIL import Image
from transformers import RTDetrV2ForObjectDetection, RTDetrImageProcessor

url = 'http://images.cocodataset.org/val2017/000000039769.jpg'
image = Image.open(requests.get(url, stream=True).raw)

image_processor = RTDetrImageProcessor.from_pretrained("PekingU/rtdetr_v2_r50vd")
model = RTDetrV2ForObjectDetection.from_pretrained("PekingU/rtdetr_v2_r50vd")

inputs = image_processor(images=image, return_tensors="pt")

with torch.no_grad():
     outputs = model(**inputs)

results = image_processor.post_process_object_detection(outputs, target_sizes=torch.tensor([(image.height, image.width)]), threshold=0.5)

for result in results:
     for score, label_id, box in zip(result["scores"], result["labels"], result["boxes"]):
         score, label = score.item(), label_id.item()
         box = [round(i, 2) for i in box.tolist()]
         print(f"{model.config.id2label[label]}: {score:.2f} {box}")
cat: 0.97 [341.14, 25.11, 639.98, 372.89]
cat: 0.96 [12.78, 56.35, 317.67, 471.34]
remote: 0.95 [39.96, 73.12, 175.65, 117.44]
sofa: 0.86 [-0.11, 2.97, 639.89, 473.62]
sofa: 0.82 [-0.12, 1.78, 639.87, 473.52]
remote: 0.79 [333.65, 76.38, 370.69, 187.48]

Training

RT-DETRv2 is trained on COCO (Lin et al. [2014]) train2017 and validated on COCO val2017 dataset. We report the standard AP metrics (averaged over uniformly sampled IoU thresholds ranging from 0.50 − 0.95 with a step size of 0.05), and APval50 commonly used in real scenarios.

Applications

RT-DETRv2 is ideal for real-time object detection in diverse applications such as autonomous driving, surveillance systems, robotics, and retail analytics. Its enhanced flexibility and deployment-friendly design make it suitable for both edge devices and large-scale systems + ensures high accuracy and speed in dynamic, real-world environments.

Magnet link

Opens the swarm directly in your torrent client — no file download needed. Copy-paste works too:

magnet:?xt=urn:btih:78e79316cc713903307392726b58fba3eb8b0e11&dn=PekingU_rtdetr_v2_r50vd

Open magnet in torrent client · infohash 78e79316cc713903307392726b58fba3eb8b0e11

Files & hashes

PathSizesha1sha256
README.md3.5 KB (3,542 B)baf0ef2795476cab34f5f2a8d5eac55a97e4467bb63200539a7eda0851278703193fcb6e6c375472e0fe95bd0b2a37f847c94354
config.json5.2 KB (5,283 B)9891f5364789e54553d1cfeed69693f5bb05fa44d754c04c9a4c6d015d8393fa2dae4c63f4a9f0ba173c3d1a66e55cff59d8f060
model.safetensors164.2 MB (172,176,856 B)04170d81bbf62fab941cf9811dae7c61446cef8b3331d977dbc0c7a6cdae9ec0b0b6ad156eb6720d65b7cf0fa710dcc541d88d71
preprocessor_config.json444 B (444 B)fcdff16b42e5ebc51d28f59184490c6eff91a88bcd38cd59999e7a95d68e487fbe5132df3d4e5c32a0836add57e6126ba0c4eaf1

Cite this release

Canonical URL
https://aiseedbank.org/models/PekingU_rtdetr_v2_r50vd/
Slug
PekingU_rtdetr_v2_r50vd
Infohash
78e79316cc713903307392726b58fba3eb8b0e11
License
apache-2.0
Signing key fingerprint
85a3b32c3712427b

Every file carries a locally computed sha256 — verify a download against the signed sums: PekingU_rtdetr_v2_r50vd.SHA256SUMS (+ minisign signature).

Provenance

Upstream repositoryPekingU/rtdetr_v2_r50vd
Revision (pinned)282494075698cab9faa1096ae26856890030c817
Fetched at2026-09-02T04:28:43Z
License at fetchapache-2.0
Snapshot toolhuggingface · seedbank 0.1.0

Trackers

✓ verified · rehash-vs-hf-metadata at 2026-09-02T04:28:48Z

apache-2.0164.2 MB (172,186,125 bytes)transformerssafetensorsrt_detr_v2object-detectionvisionendpoints_compatible1 language (en)paper: 2407.17140