π€ JEPA-WMs Pretrained Models
This π€ HuggingFace repository hosts pretrained
JEPA-WM world models.
π See the
main repository for training code and datasets.
1import torch
2
3# Load JEPA-WM models
4model, preprocessor = torch.hub.load('facebookresearch/jepa-wms', 'jepa_wm_droid')
5model, preprocessor = torch.hub.load('facebookresearch/jepa-wms', 'jepa_wm_metaworld')
6
7# Load DINO-WM baselines
8model, preprocessor = torch.hub.load('facebookresearch/jepa-wms', 'dino_wm_metaworld')
9
10# Load V-JEPA-2-AC baseline
11model, preprocessor = torch.hub.load('facebookresearch/jepa-wms', 'vjepa2_ac_droid')
1from huggingface_hub import hf_hub_download
2import torch
3
4# Download a specific checkpoint
5checkpoint_path = hf_hub_download(
6 repo_id="facebook/jepa-wms",
7 filename="jepa_wm_droid.pth.tar"
8)
9
10# Load checkpoint (contains 'encoder', 'predictor', and 'heads' state dicts)
11checkpoint = torch.load(checkpoint_path, map_location="cpu")
12print(checkpoint.keys()) # dict_keys(['encoder', 'predictor', 'heads', 'opt', 'scaler', 'epoch', 'batch_size', 'lr', 'amp'])
1@misc{terver2025drivessuccessphysicalplanning,
2 title={What Drives Success in Physical Planning with Joint-Embedding Predictive World Models?},
3 author={Basile Terver and Tsung-Yen Yang and Jean Ponce and Adrien Bardes and Yann LeCun},
4 year={2025},
5 eprint={2512.24497},
6 archivePrefix={arXiv},
7 primaryClass={cs.AI},
8 url={https://arxiv.org/abs/2512.24497},
9}
These models are licensed under
CC-BY-NC 4.0.