DiLA: Disentangled Latent Action World Models
This repository hosts pretrained weights for DiLA: Disentangled Latent Action
World Models.
DiLA is a disentangled latent-action world model trained from observation-only
videos. It separates video features into a structure pathway for
dynamics-relevant spatial layouts and latent actions, and a content pathway
for appearance, texture, and slowly revealed scene details. Future states are
predicted by rolling out latent actions in structure space and fusing the
predicted structure with content memory.
The released checkpoints are:
1model.pt
2 Recommended by default. Trained on SSv2, RT-1 / fractal20220817_data,
3 RECON, and LoopNav, following the setting in the paper.
4
5humanrobot_autoregressive.pt
6 For reproducing the human/robot experiments and table results.
7 Trained only on SSv2 and RT-1 / fractal20220817_data.
8
9navigation_autoregressive.pt
10 For reproducing the navigation experiments.
11 Trained only on RECON and LoopNav.
The checkpoint uses the public codebase naming scheme, including
structure_encoder.* and content_fusion.* keys.
Paper
DiLA: Disentangled Latent Action World Models
Tianqiu Zhang*, Muyang Lyu*, Yufan Zhang, Fang Fang, Si Wu
ICML 2026
Code
The training and evaluation code is available at:
Usage
Please see the GitHub repository for environment setup, pretrained RAE
preparation, checkpoint loading, training, and evaluation instructions.
For interactive qualitative evaluation, the code repository provides
test.ipynb, which includes autoregressive generation, action transfer, and
rebinding examples on SSv2, RT-1, RECON, and LoopNav.
Training Data
Following the paper, DiLA is trained on observation sequences from:
- Something-Something-V2 (SSv2)
- RT-1 /
fractal20220817_data
- RECON
- LoopNav
Third-party datasets are subject to their own licenses and terms of use.
Intended Use
The checkpoint is intended for research on latent action models, video
prediction, representation learning, action transfer, content-structure
disentanglement, and visual planning.
Citation
1@inproceedings{zhang2026dila,
2 title = {{DiLA}: Disentangled Latent Action World Models},
3 author = {Zhang, Tianqiu and Lyu, Muyang and Zhang, Yufan and Fang, Fang and Wu, Si},
4 booktitle = {Forty-third International Conference on Machine Learning},
5 year = {2026},
6 url = {https://openreview.net/forum?id=BRBHruBDkb}
7}