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
|
@@ -9,11 +9,11 @@ base_model:
|
|
| 9 |
---
|
| 10 |
# Matrix-Game 2.0: An Open-Source, Real-Time, and Streaming Interactive World Model
|
| 11 |
<div style="display: flex; justify-content: center; gap: 10px;">
|
| 12 |
-
<a href="
|
| 13 |
<img src="https://img.shields.io/badge/GitHub-100000?style=flat&logo=github&logoColor=white" alt="GitHub">
|
| 14 |
</a>
|
| 15 |
-
<a href="
|
| 16 |
-
<img src="https://img.shields.io/badge/arXiv-Report-b31b1b?style=flat&logo=arxiv&logoColor=white" alt="
|
| 17 |
</a>
|
| 18 |
<a href="https://matrix-game-v2.github.io/">
|
| 19 |
<img src="https://img.shields.io/badge/Project%20Page-grey?style=flat&logo=huggingface&color=FFA500" alt="Project Page">
|
|
|
|
| 9 |
---
|
| 10 |
# Matrix-Game 2.0: An Open-Source, Real-Time, and Streaming Interactive World Model
|
| 11 |
<div style="display: flex; justify-content: center; gap: 10px;">
|
| 12 |
+
<a href="https://github.com/SkyworkAI/Matrix-Game-2.0">
|
| 13 |
<img src="https://img.shields.io/badge/GitHub-100000?style=flat&logo=github&logoColor=white" alt="GitHub">
|
| 14 |
</a>
|
| 15 |
+
<a href="https://github.com/SkyworkAI/Matrix-Game-2.0/blob/main/assets/pdf/report.pdf">
|
| 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/">
|
| 19 |
<img src="https://img.shields.io/badge/Project%20Page-grey?style=flat&logo=huggingface&color=FFA500" alt="Project Page">
|