MACE-Dance / README.md
nielsr's picture
nielsr HF Staff
Improve model card: add metadata, paper links, and project information
72b58c5 verified
|
raw
history blame
2.7 kB
---
license: cc-by-4.0
pipeline_tag: image-to-video
---
# MACE-Dance: Motion-Appearance Cascaded Experts for Music-Driven Dance Video Generation
[**Paper**](https://arxiv.org/abs/2512.18181) | [**Project Page**](https://macedance.github.io/) | [**GitHub**](https://github.com/AMAP-ML/MACE-Dance)
MACE-Dance is a cascaded expert framework for music-driven dance video generation. It explicitly decouples motion generation and appearance synthesis to produce kinematically plausible, artistically expressive, and visually coherent dance videos.
The framework consists of two main components:
- **Motion Expert**: Performs music-to-3D motion generation (SMPL) using a diffusion model with a BiMamba-Transformer architecture.
- **Appearance Expert**: Synthesizes the final dance video conditioned on the motion and a reference image, ensuring visual identity and spatiotemporal coherence.
## πŸ“¦ Pretrained Weights
This repository stores the pretrained weights used in **MACE-Dance**, including both **expert models** and **evaluation models**.
### πŸ—‚οΈ Directory Structure
```bash
weight/
β”œβ”€β”€ Evaluation-Appearance/
β”‚ └── Evaluation-Appearance.7z
β”œβ”€β”€ Evaluation-Motion/
β”‚ └── Evaluation-Motion.7z
β”œβ”€β”€ Expert-Appearance/
β”‚ └── Expert-Apprearance.7z
└── Expert-Motion/
└── Expert-Motion.7z
```
### πŸ“˜ Description
- 🎭 **Expert-Appearance**: Pretrained weights for the **Appearance Expert** (motion-guided video synthesis).
- πŸ•Ί **Expert-Motion**: Pretrained weights for the **Motion Expert** (music-to-3D dance motion).
- πŸ“Š **Evaluation-Appearance**: Weights used for **appearance-related evaluation** (based on VBench).
- πŸ“ˆ **Evaluation-Motion**: Weights used for **motion-related evaluation** (based on ViTPose).
## πŸ“ Notes
- Each subfolder contains a compressed **`.7z`** package. Please extract the corresponding file before use.
- Make sure the extracted weights are placed in the expected paths for training, inference, or evaluation as specified in the [official code repository](https://github.com/AMAP-ML/MACE-Dance).
- Use **Expert-*** weights for model inference and **Evaluation-*** weights for metric computation pipelines.
## πŸ“„ Citation
If you find this project useful, please consider citing the paper:
```bibtex
@article{yang2026macedance,
title={MACE-Dance: Motion-Appearance Cascaded Experts for Music-Driven Dance Video Generation},
author={Yang, Kaixing and Zhu, Jiashu and Tang, Xulong and Peng, Ziqiao and Zhang, Xiangyue and Wang, Puwei and Jiahong Wu and Chu, Xiangxiang and Liu, Hongyan and He, Jun},
journal={ACM Transactions on Graphics (SIGGRAPH 2026)},
year={2026}
}
```