docs: add NOTICE attribution per Apache-2.0 s4(d) (code AND weights)
Browse files
NOTICE
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
UniFormer-S COCO top-down pose - acaua mirror (pure-PyTorch port)
|
| 2 |
+
==================================================================
|
| 3 |
+
|
| 4 |
+
This product includes:
|
| 5 |
+
|
| 6 |
+
1. PORTED SOURCE CODE: a pure-PyTorch port of the UniFormer-pose
|
| 7 |
+
architecture (located in the acaua repository at
|
| 8 |
+
src/acaua/adapters/uniformer/pose/) is a derivative work of:
|
| 9 |
+
|
| 10 |
+
- Sense-X/UniFormer (Apache-2.0)
|
| 11 |
+
https://github.com/Sense-X/UniFormer @ main
|
| 12 |
+
Files derived from:
|
| 13 |
+
pose_estimation/mmpose/models/backbones/uniformer.py
|
| 14 |
+
(the global-attention UniFormer backbone, parameter-tree
|
| 15 |
+
identical to the detection variant — we reuse acaua's
|
| 16 |
+
UniFormer2DDense with hybrid=False, windows=False)
|
| 17 |
+
pose_estimation/mmpose/models/keypoint_heads/top_down_simple_head.py
|
| 18 |
+
(TopDownSimpleHead: 3x ConvTranspose2d-stride-2 + BN + ReLU
|
| 19 |
+
+ 1x1 final conv)
|
| 20 |
+
pose_estimation/mmpose/core/evaluation/top_down_eval.py
|
| 21 |
+
(keypoints_from_heatmaps with post_process='default' branch:
|
| 22 |
+
argmax + sign(neighbor_diff) * 0.25 shift)
|
| 23 |
+
|
| 24 |
+
2. CONVERTED WEIGHTS: the model.safetensors file in this mirror is a
|
| 25 |
+
key-remapped conversion of the upstream pretrained checkpoint:
|
| 26 |
+
|
| 27 |
+
- upstream repo: Sense-X/UniFormer (Apache-2.0)
|
| 28 |
+
- upstream weights: Google Drive file id
|
| 29 |
+
162R0JuTpf3gpLe1IK6oxRoQK7JSj4ylx
|
| 30 |
+
- upstream filename: top_down_256x192_global_small.pth
|
| 31 |
+
- upstream SHA256: d77059e3e9322c0e20dc89dc0cf2a583ffe2ced7d3e9b350233738add570bc30
|
| 32 |
+
- upstream paper: Li et al., "UniFormer: Unifying Convolution
|
| 33 |
+
and Self-attention for Visual Recognition",
|
| 34 |
+
arXiv:2201.09450 (ICLR 2022)
|
| 35 |
+
|
| 36 |
+
Key remap rule (eager, at conversion time):
|
| 37 |
+
backbone.* -> backbone.* (no change)
|
| 38 |
+
keypoint_head.* -> head.*
|
| 39 |
+
|
| 40 |
+
Conversion was performed by scripts/convert_uniformer_pose.py in the
|
| 41 |
+
acaua repository. The adapter loads the safetensors file under
|
| 42 |
+
load_state_dict(strict=True) — key-naming drift between upstream and
|
| 43 |
+
the port is a hard error at load time.
|
| 44 |
+
|
| 45 |
+
3. BUNDLED DETECTOR: this mirror's adapter loads
|
| 46 |
+
CondadosAI/rtmdet_t_coco at adapter-init time so callers get the
|
| 47 |
+
full top-down pipeline (detect persons -> per-person crop -> pose ->
|
| 48 |
+
inverse-warp) from a single predict(image) call. RTMDet-tiny carries
|
| 49 |
+
its own attribution chain — see CondadosAI/rtmdet_t_coco's NOTICE
|
| 50 |
+
file.
|
| 51 |
+
|
| 52 |
+
Mirrored on 2026-04-25 by CondadosAI.
|
| 53 |
+
|
| 54 |
+
License
|
| 55 |
+
-------
|
| 56 |
+
Licensed under the Apache License, Version 2.0 (the "License");
|
| 57 |
+
you may not use this file except in compliance with the License.
|
| 58 |
+
You may obtain a copy of the License at
|
| 59 |
+
|
| 60 |
+
http://www.apache.org/licenses/LICENSE-2.0
|
| 61 |
+
|
| 62 |
+
Unless required by applicable law or agreed to in writing, software
|
| 63 |
+
distributed under the License is distributed on an "AS IS" BASIS,
|
| 64 |
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| 65 |
+
See the License for the specific language governing permissions and
|
| 66 |
+
limitations under the License.
|