Improve model card and add metadata
#1
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,3 +1,40 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: cc-by-nc-4.0
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-nc-4.0
|
| 3 |
+
pipeline_tag: robotics
|
| 4 |
+
---
|
| 5 |
+
|
| 6 |
+
# WestWorld: A Knowledge-Encoded Scalable Trajectory World Model for Diverse Robotic Systems
|
| 7 |
+
|
| 8 |
+
WestWorld is a scalable trajectory world model designed for diverse robotic systems. It addresses scalability challenges using a system-aware Mixture-of-Experts (Sys-MoE) and incorporates domain knowledge of robot physical structures via structural embeddings to enhance zero-shot generalization.
|
| 9 |
+
|
| 10 |
+
- **Paper:** [WestWorld: A Knowledge-Encoded Scalable Trajectory World Model for Diverse Robotic Systems](https://arxiv.org/abs/2603.14392)
|
| 11 |
+
- **Project Page:** [https://westworldrobot.github.io/](https://westworldrobot.github.io/)
|
| 12 |
+
- **Repository:** [https://github.com/511205787/WestWorld](https://github.com/511205787/WestWorld)
|
| 13 |
+
|
| 14 |
+
## Evaluation
|
| 15 |
+
|
| 16 |
+
To evaluate the pretrained model, follow the instructions from the official repository:
|
| 17 |
+
|
| 18 |
+
1. Place the checkpoint in the `pre_trained/` directory.
|
| 19 |
+
2. Edit `configs/config.yaml` and set the `ckpt_path`. For example:
|
| 20 |
+
```yaml
|
| 21 |
+
ckpt_path: './pre_trained/westworld.ckpt'
|
| 22 |
+
```
|
| 23 |
+
3. Run the evaluation script:
|
| 24 |
+
```bash
|
| 25 |
+
python evaluation_westworld.py
|
| 26 |
+
```
|
| 27 |
+
|
| 28 |
+
## Citation
|
| 29 |
+
|
| 30 |
+
If you find WestWorld useful in your research, please cite:
|
| 31 |
+
|
| 32 |
+
```bibtex
|
| 33 |
+
@inproceedings{wang2026westworld,
|
| 34 |
+
title={WestWorld: A Knowledge-Encoded Scalable Trajectory World Model for Diverse Robotic Systems},
|
| 35 |
+
author={Wang, Yuchen and Kong, Jiangtao and Wei, Sizhe and Li, Xiaochang and Lin, Haohong and Zhao, Hongjue and Zhou, Tianyi and Gan, Lu and Shao, Huajie},
|
| 36 |
+
booktitle={Forty-third International Conference on Machine Learning},
|
| 37 |
+
year={2026},
|
| 38 |
+
url={https://openreview.net/forum?id=ncRRCG4BfP}
|
| 39 |
+
}
|
| 40 |
+
```
|