Views
No views yet
1# Environment setup
2MAX_JOBS=1 uv sync
3source .venv/bin/activate
4export PYTHONPATH=.:./third_party/diffusion_policy
5
6# Pretrained weights -> runs/weights/
7hf download xyzhang368/RLA-WM --local-dir runs/weights
8
9# Minimal dataset for inference -> data/maniskill/ + data/eval_handles/
10mkdir -p data && cd data
11hf download xyzhang368/RLA-WM --repo-type dataset --include "maniskill.tar" --local-dir . && tar -xf maniskill.tar
12cd ..
13
14# Run the inference notebook
15jupyter notebook notebooks/inference_demo.ipynb1@article{zhang2026learning,
2 title={{Learning Visual Feature-Based World Models via Residual Latent Action}},
3 author={Zhang, Xinyu and Xu, Zhengtong and Tao, Yutian and Wang, Yeping and She, Yu and Boularias, Abdeslam},
4 journal={arXiv preprint arXiv:2605.07079},
5 year={2026},
6 eprint={2605.07079},
7 archivePrefix={arXiv},
8 primaryClass={cs.CV}
9}