Skip to content

Releases: roboflow/rf-detr_plus

Improve assets

19 Feb 10:18

Choose a tag to compare

What's Changed

  • Refactor model assets structure, for rfdetr 1.4.3+ by @Borda in #6
  • Add contributing guidelines and agent instructions documentation by @Borda in #4

Full Changelog: 1.0.0...1.0.1

Introduction of rf-detr_plus

11 Feb 10:49

Choose a tag to compare

We have reorganized the RF-DETR model family into two separate packages. This change distinguishes the open-source core models from the high-capacity "Plus" models that use the DINOv2 backbone.

📦 New Package: rf-detr_plus

The XLarge and 2XLarge models are now in this dedicated repository.

  • Target: High-accuracy applications.
  • License: Platform Model License 1.0 (PML-1.0).
  • Models: RFDETRXLarge, RFDETR2XLarge.

⚡ Core Package: rf-detr

The core repository now exclusively houses the real-time models.

  • License: Apache 2.0.
  • Models: Nano, Small, Medium, Large.

🛠️ Migration Guide

To use XLarge or 2XLarge models, you must now install the plus package:

pip install rfdetr-plus

Usage remains similar, but requires explicit license acceptance:

from rfdetr import RFDETRXLarge

# You must accept the PML license to use Plus models
model = RFDETRXLarge(accept_platform_model_license=True)