版本发布 1
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: ```bash pip install rfdetr-plus ``` Usage remains similar, but requires explicit license acceptance: ```python from rfdetr import RFDETRXLarge # You must accept the PML license to use Plus models model = RFDETRXLarge(accept_platform_model_license=True) ```