Update README.md
Browse files
README.md
CHANGED
|
@@ -1,11 +1,20 @@
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
| 4 |
|
| 5 |
|
| 6 |
-
|
| 7 |

|
| 8 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
This model repository contains the final model weights of the Solaris Minecraft multiplayer model, along with the intermediate model weights for all training stages and third-party models required for inference and training. All weights are in JAX. Refer to the [Solaris](https://github.com/solaris-wm/solaris) GitHub repository for downloading and running instructions.
|
| 10 |
|
| 11 |
Below is the description of the model folders:
|
|
@@ -18,4 +27,15 @@ Below is the description of the model folders:
|
|
| 18 |
- `sp_bidirectional_pretrain_120000.pt`: Single player bidirectional model weights produced by training Stage 1
|
| 19 |
- `matrix-game-init.pt`: [Matrix Game 2.0 weights](https://huggingface.co/Skywork/Matrix-Game-2.0/tree/main/base_distilled_model) with the keyboard action MLP dimension increased to 23 (randmoly initialized). Used for single player pretraining (Stage 1) initialization
|
| 20 |
|
| 21 |
-
See [Solaris](https://github.com/solaris-wm/solaris?tab=readme-ov-file#training-stages) repo for a detailed description of the training stages.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- image-to-video
|
| 5 |
+
tags:
|
| 6 |
+
- minecraft
|
| 7 |
+
- world-model
|
| 8 |
+
- multi-agent
|
| 9 |
---
|
| 10 |
|
| 11 |
|
|
|
|
| 12 |

|
| 13 |
|
| 14 |
+
[**Project Page**](https://solaris-wm.github.io/) | [**Paper**](https://huggingface.co/papers/2602.22208) | [**Github**](https://github.com/solaris-wm/solaris)
|
| 15 |
+
|
| 16 |
+
# Solaris Model
|
| 17 |
+
|
| 18 |
This model repository contains the final model weights of the Solaris Minecraft multiplayer model, along with the intermediate model weights for all training stages and third-party models required for inference and training. All weights are in JAX. Refer to the [Solaris](https://github.com/solaris-wm/solaris) GitHub repository for downloading and running instructions.
|
| 19 |
|
| 20 |
Below is the description of the model folders:
|
|
|
|
| 27 |
- `sp_bidirectional_pretrain_120000.pt`: Single player bidirectional model weights produced by training Stage 1
|
| 28 |
- `matrix-game-init.pt`: [Matrix Game 2.0 weights](https://huggingface.co/Skywork/Matrix-Game-2.0/tree/main/base_distilled_model) with the keyboard action MLP dimension increased to 23 (randmoly initialized). Used for single player pretraining (Stage 1) initialization
|
| 29 |
|
| 30 |
+
See [Solaris](https://github.com/solaris-wm/solaris?tab=readme-ov-file#training-stages) repo for a detailed description of the training stages.
|
| 31 |
+
|
| 32 |
+
# Citation
|
| 33 |
+
|
| 34 |
+
```bibtex
|
| 35 |
+
@article{savva2025solaris,
|
| 36 |
+
title={Solaris: Building a Multiplayer Video World Model in Minecraft},
|
| 37 |
+
author={Georgy Savva and Oscar Michel and Daohan Lu and Suppakit Waiwitlikhit and Timothy Meehan and Dhairya Mishra and Srivats Poddar and Jack Lu and Saining Xie},
|
| 38 |
+
journal={arXiv preprint arXiv:2602.22208},
|
| 39 |
+
year={2025}
|
| 40 |
+
}
|
| 41 |
+
```
|