Views
No views yet
motius.pipelines.emage.EMAGEPipeline| Item | Value |
|---|---|
| Task | Speech-to-Gesture |
| Dataset | BEAT2 English speaker 2 |
| Input | 16 kHz mono waveform |
| Native motion | SMPL-X 55-joint axis-angle pose + expression + translation |
| Motion rate | 30 FPS |
| Window | 64 frames with four autoregressive seed frames |
| Checkpoint | ZeyuLing/Motius-EMAGE-BEAT2 |
| Upstream revision | H-Liu1997/emage_audio@b04466b83bdebd656844a2c416797d3131e34ede |
| Runtime revision | PantoMatrix/PantoMatrix@c7356f35f8e39e469e510ccd1bf37e44adf8ec0e |
| License | Apache-2.0 |
.bin files require the compatible Transformers loader
used by the official model:bash tools/setup_emage_env.sh1git clone https://github.com/PantoMatrix/PantoMatrix ref_repo/PantoMatrix
2git -C ref_repo/PantoMatrix checkout c7356f35f8e39e469e510ccd1bf37e44adf8ec0e
3export MOTIUS_EMAGE_ROOT="$PWD/ref_repo/PantoMatrix"1from motius.pipelines.emage import EMAGEPipeline
2
3pipeline = EMAGEPipeline.from_pretrained(
4 "ZeyuLing/Motius-EMAGE-BEAT2",
5 bundle_kwargs={
6 "runtime_root": "ref_repo/PantoMatrix",
7 "device": "cuda",
8 },
9)
10motion = pipeline.infer_s2g(["speech.wav"])[0]
11pipeline.save_npz(
12 motion,
13 "outputs/inference/emage/speech_to_gesture/speech.npz",
14)| Evaluator | Clips | FGD ↓ | BC ↑ | Diversity | uTMR FID ↓ | uTMR Paired Dist. ↓ |
|---|---|---|---|---|---|---|
| BEAT2 Official | 15 | 6.199 | 7.564 | 12.476 | 0.0523 | 17.1924 |
FGD = 6.199, BC = 7.564, and
Diversity = 12.476 on the paper display scale. The paper reports
5.512 / 7.724 / 13.06; the relative differences are
+12.46% / -2.07% / -4.47% respectively. This is official-checkpoint
verification, not an exact paper reproduction: the maintained public
checkpoint is audio-only, while the paper model also consumed text.
The uTMR columns use only canonical 30 FPS SMPL-22 joint positions; metric FK
sets SMPL-X translation to zero. FID is L2-normalized, while paired distance
uses native uTMR embeddings.1@inproceedings{liu2024emage,
2 title={EMAGE: Towards Unified Holistic Co-Speech Gesture Generation via Expressive Masked Audio Gesture Modeling},
3 author={Liu, Haiyang and Zhu, Zihao and Becherini, Giorgio and Peng, Yichen and Su, Mingyang and Zhou, You and Zhe, Xuefei and Iwamoto, Naoya and Zheng, Bo and Black, Michael J.},
4 booktitle={CVPR},
5 year={2024}
6}