Instructions to use Skywork/Matrix-Game-2.0 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use Skywork/Matrix-Game-2.0 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("Skywork/Matrix-Game-2.0", 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
|
@@ -12,7 +12,7 @@ base_model:
|
|
| 12 |
<a href="https://github.com/SkyworkAI/Matrix-Game">
|
| 13 |
<img src="https://img.shields.io/badge/GitHub-100000?style=flat&logo=github&logoColor=white" alt="GitHub">
|
| 14 |
</a>
|
| 15 |
-
<a href="https://
|
| 16 |
<img src="https://img.shields.io/badge/arXiv-Report-b31b1b?style=flat&logo=arxiv&logoColor=white" alt="report">
|
| 17 |
</a>
|
| 18 |
<a href="https://matrix-game-v2.github.io/">
|
|
@@ -106,4 +106,10 @@ We are grateful to the broader research community for their open exploration and
|
|
| 106 |
## 📎 Citation
|
| 107 |
If you find this project useful, please cite our paper:
|
| 108 |
```bibtex
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 109 |
```
|
|
|
|
| 12 |
<a href="https://github.com/SkyworkAI/Matrix-Game">
|
| 13 |
<img src="https://img.shields.io/badge/GitHub-100000?style=flat&logo=github&logoColor=white" alt="GitHub">
|
| 14 |
</a>
|
| 15 |
+
<a href="https://arxiv.org/pdf/2508.13009">
|
| 16 |
<img src="https://img.shields.io/badge/arXiv-Report-b31b1b?style=flat&logo=arxiv&logoColor=white" alt="report">
|
| 17 |
</a>
|
| 18 |
<a href="https://matrix-game-v2.github.io/">
|
|
|
|
| 106 |
## 📎 Citation
|
| 107 |
If you find this project useful, please cite our paper:
|
| 108 |
```bibtex
|
| 109 |
+
@article{he2025matrix,
|
| 110 |
+
title={Matrix-Game 2.0: An Open-Source, Real-Time, and Streaming Interactive World Model},
|
| 111 |
+
author={He, Xianglong and Peng, Chunli and Liu, Zexiang and Wang, Boyang and Zhang, Yifan and Cui, Qi and Kang, Fei and Jiang, Biao and An, Mengyin and Ren, Yangyang and Xu, Baixin and Guo, Hao-Xiang and Gong, Kaixiong and Wu, Cyrus and Li, Wei and Song, Xuchen and Liu, Yang and Li, Eric and Zhou, Yahui},
|
| 112 |
+
journal={arXiv preprint arXiv:2508.13009},
|
| 113 |
+
year={2025}
|
| 114 |
+
}
|
| 115 |
```
|