Views
No views yet
CondadosAI/ for use with the acaua computer vision library.acaua.adapters.rtmdet — no mmcv, no mmengine, no mmdet, no trust_remote_code. The weights in this mirror are converted from the upstream mmdet .pth checkpoint to safetensors with the acaua adapter's state_dict key naming. They are NOT drop-in compatible with mmdet — they're designed to load cleanly into our nn.Module tree.| Upstream code | open-mmlab/mmdetection @ cfd5d3a985 (Apache-2.0) |
| Upstream weights URL | https://download.openmmlab.com/mmdetection/v3.0/rtmdet/rtmdet_l_8xb32-300e_coco/rtmdet_l_8xb32-300e_coco_20220719_112030-5a0be7c4.pth |
| Upstream weights SHA256 | 5a0be7c4a8123d1e634ce09b08682af373f503de2040e1532d254791f9332cec |
| Conversion script | scripts/convert_rtmdet.py |
| Paper | Lyu et al., "RTMDet: An Empirical Study of Designing Real-Time Object Detectors", arXiv:2212.07784 |
| Mirrored on | 2026-04-20 |
| Mirrored by | CondadosAI/acaua |
1import acaua
2
3model = acaua.Model.from_pretrained("CondadosAI/rtmdet_l_coco")
4results = model.predict("image.jpg")
5print(results.boxes, results.scores, results.labels)open-mmlab/mmdetection) and the weights released on download.openmmlab.com. The acaua adapter is itself a derivative work of the upstream PyTorch implementation — see NOTICE for the required attribution chain (code AND weights).1@misc{lyu2022rtmdet,
2 title={RTMDet: An Empirical Study of Designing Real-Time Object Detectors},
3 author={Chengqi Lyu and Wenwei Zhang and Haian Huang and Yue Zhou and Yudong Wang and Yanyi Liu and Shilong Zhang and Kai Chen},
4 year={2022},
5 eprint={2212.07784},
6 archivePrefix={arXiv},
7 primaryClass={cs.CV}
8}