LePlanner
Official checkpoints for LePlanner: Amortized Iterative Control in Frozen Latent World Models.
Results
| Environment | Success |
|---|---|
| PushT | 98% (rh=1) |
| Reacher | 100% |
| TwoRooms | 100% |
Download
from huggingface_hub import hf_hub_download
env = "reacher" # or "pusht" / "tworooms"
controller = hf_hub_download("nottygian/Leplanner", f"checkpoints/Leplanner Controller/{env}/controller.pt", repo_type="model")
density = hf_hub_download("nottygian/Leplanner", f"checkpoints/Leplanner Controller/{env}/density.pt", repo_type="model")
world_model = hf_hub_download("nottygian/Leplanner", f"checkpoints/base_world_models/{env}/weights.pt", repo_type="model")
Structure
checkpoints/
βββ Leplanner Controller/ # Trained controllers + density
β βββ pusht/
β β βββ controller.pt # 98% success
β β βββ density.pt
β βββ reacher/
β β βββ controller.pt # 100% success
β β βββ density.pt
β βββ tworooms/
β βββ controller.pt # 100% success
β βββ density.pt
βββ base_world_models/ # Frozen LeWM world models
β βββ pusht/config.json + weights.pt
β βββ reacher/config.json + weights.pt
β βββ tworooms/config.json + weights.pt
βββ results/eval/results.jsonl # Raw evaluation logs
code/ # Training & evaluation scripts
Citation
@article{leplanner,
title={LePlanner: Amortized Iterative Control in Frozen Latent World Models},
author={[Authors]},
journal={[Venue]},
year={[Year]},
}