ATLAS World Models
T-07The Navigator’s Bridge

Model-Based Reinforcement Learning, Planning & Control

33°S, 151°E — where prediction turns into decision

How an agent uses a learned world model to decide what to do next, by imagining consequences before acting.

planningimagination-based trainingmodel predictive controlpolicy
First Bearings

For anyone finding this territory for the first time

A chess player who thinks three moves ahead before touching a piece is doing, in miniature, exactly what a model-based agent does: use an imagined version of the game to compare options, before committing to one in the real world. The alternative — trying every move for real and seeing what happens — is how a beginner learns, and it is far slower and riskier.

Surveyor's Field Notes

For the practitioners building on this ground

Model-based reinforcement learning uses a learned world model in one of two ways: as a source of imagined rollouts to train a policy without touching the real environment (imagination-based training, as in DreamerV3), or as a component of online planning, where the model is queried at decision time to simulate candidate action sequences and select the best (model predictive control, or tree-search variants). The former amortizes cost into training; the latter spends compute at inference time in exchange for adaptability to novel situations the training distribution never covered.

The central engineering risk in both modes is model exploitation: a policy trained purely inside an imperfect world model will happily discover and exploit the model's own blind spots, producing behavior that looks excellent in imagination and fails in reality. Mitigations — model ensembles, uncertainty-aware planning, periodic real-environment grounding — are not optional extras; they are what makes model-based control trustworthy rather than merely impressive in simulation.

Chief Cartographer's Brief

For the person deciding whether to fund the expedition

This is the territory where a world model stops being a research artifact and becomes a decision-making system — which means it is also where the stakes of being wrong rise sharply. Before adopting model-based planning for anything consequential, the right diligence question is not "how good is the model's imagination" but "what happens when the model is confidently wrong, and how is that detected before it drives a real decision." Any serious proposal in this territory should come with an answer to that question, not an assumption that it won't happen.

Further Charts & Source Material

← T-06 Generative Foundations: Latent Variables, Diffusion & Flow
← Return to the full atlas