File size: 2,052 Bytes
a3d3847 ae73995 a3d3847 ae73995 c4863ef ae73995 c4863ef ae73995 c87efcf ae73995 c87efcf ae73995 dc82af5 ae73995 6a21084 ae73995 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 | ---
license: other
tags:
- human-motion-generation
- human-human-interaction
- text-to-motion
- diffusion
library_name: pytorch
---
# SocialStructureHHI — Executor
Pretrained executor weights for **SocialStructureHHI**: *Social Structure Matters in 3D
Human–Human Interaction Generation*.
The **solo-to-social motion executor** is the full social-planning model — a
HunyuanMotion-Lite backbone with variable-length **partner conditioning** plus a pinned
**self-history prefix** — that generates two-person interactions phase-by-phase in a
Ping-Pong manner.
## Files
| file | description |
|------|-------------|
| `ckpts/best.pt` | solo-to-social motion executor, ~1.86 GB |
## Usage
```python
# In the SocialStructureHHI repo:
# https://github.com/EngineeringAI-LAB/SocialStructureHHI
from huggingface_hub import hf_hub_download
ckpt = hf_hub_download("EngineeringAI-LAB/SocialStructure", "ckpts/best.pt")
```
```bash
python inference/run_inference.py --ckpt $ckpt --demo_id 5 \
--llm_model qwen3.5:35b --llm_base_url http://localhost:11435/v1 \
--out_dir outputs/handshake --render
```
The HunyuanMotion backbone, Qwen3-8B and CLIP-L are additional external dependencies — see
the code repository for setup. Dataset normalization stats
(`data/motion_norm_stats.npz`) ship with the code repo and are required to load the model.
## Links
- 📄 Paper: https://arxiv.org/abs/2606.24255
- 💻 Code: https://github.com/EngineeringAI-LAB/SocialStructureHHI
- 🌐 Project page: https://engineeringai-lab.github.io/SocialStructureHHI/
- 🤗 Dataset: https://huggingface.co/datasets/EngineeringAI-LAB/SocialStructure
## Citation
```bibtex
@misc{wang2026socialstructure,
title = {Social Structure Matters in 3D Human--Human Interaction Generation},
author = {Zhongju Wang and Beier Wang and Yatao Bian and Pichao Wang and Zhi Wang
and Daoyi Dong and Hongdong Li and Huadong Mo and Zhenhong Sun},
year = {2026},
eprint = {2606.24255},
archivePrefix = {arXiv},
primaryClass = {cs.CV}
}
```
|