Instructions to use Skywork/Matrix-Game-3.0 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use Skywork/Matrix-Game-3.0 with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("Skywork/Matrix-Game-3.0", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -87,4 +87,11 @@ With multiple GPUs, you can pass `--use_async_vae --async_vae_warmup_iters 1` to
|
|
| 87 |
If you find this work useful for your research, please kindly cite our paper:
|
| 88 |
|
| 89 |
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 90 |
```
|
|
|
|
| 87 |
If you find this work useful for your research, please kindly cite our paper:
|
| 88 |
|
| 89 |
```
|
| 90 |
+
@misc{2026matrix,
|
| 91 |
+
title={Matrix-Game 3.0: Real-Time and Streaming Interactive World Model with Long-Horizon Memory},
|
| 92 |
+
author={{Skywork AI Matrix-Game Team}},
|
| 93 |
+
year={2026},
|
| 94 |
+
howpublished={Technical report},
|
| 95 |
+
url={https://github.com/SkyworkAI/Matrix-Game/blob/main/Matrix-Game-3/assets/pdf/report.pdf}
|
| 96 |
+
}
|
| 97 |
```
|