docs: acaua mirror model card with code+weights provenance
Browse files
README.md
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
library_name: acaua
|
| 4 |
+
pipeline_tag: object-detection
|
| 5 |
+
tags:
|
| 6 |
+
- object-detection
|
| 7 |
+
- vision
|
| 8 |
+
- acaua
|
| 9 |
+
- native-pytorch-port
|
| 10 |
+
- rtmdet
|
| 11 |
+
datasets:
|
| 12 |
+
- coco
|
| 13 |
+
---
|
| 14 |
+
|
| 15 |
+
# RTMDet-m — acaua mirror (pure-PyTorch port)
|
| 16 |
+
|
| 17 |
+
Pure-PyTorch port of RTMDet-m (24.7M params, COCO box AP 49.4) hosted under `CondadosAI/` for use with the [acaua](https://github.com/CondadosAI/acaua) computer vision library.
|
| 18 |
+
|
| 19 |
+
The architecture has been re-implemented in pure PyTorch under [`acaua.adapters.rtmdet`](https://github.com/CondadosAI/acaua/tree/main/src/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.
|
| 20 |
+
|
| 21 |
+
## Provenance
|
| 22 |
+
|
| 23 |
+
| | |
|
| 24 |
+
|---|---|
|
| 25 |
+
| Upstream code | [`open-mmlab/mmdetection`](https://github.com/open-mmlab/mmdetection) @ [`cfd5d3a985`](https://github.com/open-mmlab/mmdetection/tree/cfd5d3a985b0249de009b67d04f37263e11cdf3d) (Apache-2.0) |
|
| 26 |
+
| Upstream weights URL | `https://download.openmmlab.com/mmdetection/v3.0/rtmdet/rtmdet_m_8xb32-300e_coco/rtmdet_m_8xb32-300e_coco_20220719_112220-229f527c.pth` |
|
| 27 |
+
| Upstream weights SHA256 | `229f527ca88498e8894a778a62a878a322b4a3ea2cae09ea537d34b7e907792b` |
|
| 28 |
+
| Conversion script | [`scripts/convert_rtmdet.py`](https://github.com/CondadosAI/acaua/blob/main/scripts/convert_rtmdet.py) |
|
| 29 |
+
| Paper | Lyu et al., *"RTMDet: An Empirical Study of Designing Real-Time Object Detectors"*, arXiv:[2212.07784](https://arxiv.org/abs/2212.07784) |
|
| 30 |
+
| Mirrored on | 2026-04-20 |
|
| 31 |
+
| Mirrored by | [CondadosAI/acaua](https://github.com/CondadosAI/acaua) |
|
| 32 |
+
|
| 33 |
+
## Usage
|
| 34 |
+
|
| 35 |
+
```python
|
| 36 |
+
import acaua
|
| 37 |
+
|
| 38 |
+
model = acaua.Model.from_pretrained("CondadosAI/rtmdet_m_coco")
|
| 39 |
+
results = model.predict("image.jpg")
|
| 40 |
+
print(results.boxes, results.scores, results.labels)
|
| 41 |
+
```
|
| 42 |
+
|
| 43 |
+
## License and attribution
|
| 44 |
+
|
| 45 |
+
Redistributed under Apache-2.0, consistent with the upstream code (`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`](./NOTICE) for the required attribution chain (code AND weights).
|
| 46 |
+
|
| 47 |
+
## Citation
|
| 48 |
+
|
| 49 |
+
```bibtex
|
| 50 |
+
@misc{lyu2022rtmdet,
|
| 51 |
+
title={RTMDet: An Empirical Study of Designing Real-Time Object Detectors},
|
| 52 |
+
author={Chengqi Lyu and Wenwei Zhang and Haian Huang and Yue Zhou and Yudong Wang and Yanyi Liu and Shilong Zhang and Kai Chen},
|
| 53 |
+
year={2022},
|
| 54 |
+
eprint={2212.07784},
|
| 55 |
+
archivePrefix={arXiv},
|
| 56 |
+
primaryClass={cs.CV}
|
| 57 |
+
}
|
| 58 |
+
```
|