Views
No views yet
CondadosAI/ for use with the acaua computer vision library.acaua.adapters.rtmo — no mmcv, no mmengine, no mmpose, no trust_remote_code. The model.safetensors in this mirror is converted from the upstream .pth checkpoint to safetensors with the acaua adapter's state_dict key naming. It is NOT drop-in compatible with mmpose — weights are laid out to load cleanly into our nn.Module tree via load_state_dict(strict=True).| Upstream code | open-mmlab/mmpose @ 759b39c13fea6ba094afc1fa932f51dc1b11cbf9 (Apache-2.0) |
| Upstream weights URL | https://download.openmmlab.com/mmpose/v1/projects/rtmo/rtmo-s_8xb32-600e_body7-640x640-dac2bf74_20231211.pth |
| Upstream weights SHA256 | dac2bf749bbfb51e69ca577ca0327dff4433e3be9a56b782f0b7ef94fb45247e |
| Conversion script | scripts/convert_rtmo.py |
| Paper | Lu et al., "RTMO: Towards High-Performance One-Stage Real-Time Multi-Person Pose Estimation", CVPR 2024, arXiv:2312.07526 |
| Mirrored on | 2026-04-22 |
| Mirrored by | CondadosAI/acaua |
1import acaua
2
3model = acaua.Model.from_pretrained("CondadosAI/rtmo_s_body7")
4result = model.predict("image.jpg")
5
6# Result is a PoseResult with shape:
7# result.boxes -> (N, 4) float32, xyxy
8# result.labels -> (N,) int64 (person = 0)
9# result.scores -> (N,) float32
10# result.keypoints -> (N, 17, 2) float32, xy in image pixels
11# result.keypoint_scores -> (N, 17) float32
12
13# Skeleton edges + keypoint names live on the adapter:
14import supervision as sv
15kp = result.to_supervision()
16sv.EdgeAnnotator(edges=model.skeleton).annotate(image, kp)widen_factor=0.5, deepen_factor=0.33hidden_dim=256(192 × 256) coordinate binsPoseDataPreprocessor)| Variant | Dataset | COCO val AP | COCO val AR | V100 FPS |
|---|---|---|---|---|
| RTMO-s | body7 | 68.6 | 74.3 | ~141 |
NOTICE for the required attribution chain (code AND weights).1@misc{lu2023rtmo,
2 title={{RTMO}: Towards High-Performance One-Stage Real-Time Multi-Person Pose Estimation},
3 author={Peng Lu and Tao Jiang and Yining Li and Xiangtai Li and Kai Chen and Wenming Yang},
4 year={2023},
5 eprint={2312.07526},
6 archivePrefix={arXiv},
7 primaryClass={cs.CV}
8}