Instructions to use yanboding/MTVCrafter with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use yanboding/MTVCrafter with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline from diffusers.utils import load_image, export_to_video # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("yanboding/MTVCrafter", dtype=torch.bfloat16, device_map="cuda") pipe.to("cuda") prompt = "A man with short gray hair plays a red electric guitar." image = load_image( "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/diffusers/guitar-man.png" ) output = pipe(image=image, prompt=prompt).frames[0] export_to_video(output, "output.mp4") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -109,11 +109,14 @@ accelerate launch train_vqvae.py
|
|
| 109 |
If you find our work useful, please consider citing:
|
| 110 |
|
| 111 |
```bibtex
|
| 112 |
-
@
|
| 113 |
-
|
| 114 |
-
|
| 115 |
-
|
| 116 |
-
|
|
|
|
|
|
|
|
|
|
| 117 |
}
|
| 118 |
```
|
| 119 |
|
|
|
|
| 109 |
If you find our work useful, please consider citing:
|
| 110 |
|
| 111 |
```bibtex
|
| 112 |
+
@misc{ding2025mtvcrafter4dmotiontokenization,
|
| 113 |
+
title={MTVCrafter: 4D Motion Tokenization for Open-World Human Image Animation},
|
| 114 |
+
author={Yanbo Ding and Xirui Hu and Zhizhi Guo and Yali Wang},
|
| 115 |
+
year={2025},
|
| 116 |
+
eprint={2505.10238},
|
| 117 |
+
archivePrefix={arXiv},
|
| 118 |
+
primaryClass={cs.CV},
|
| 119 |
+
url={https://arxiv.org/abs/2505.10238},
|
| 120 |
}
|
| 121 |
```
|
| 122 |
|