ATLAS World Models
T-03The Coastline

Environments, Simulators & Rollouts

24°S, 41°W — where the model meets the world it studies

The interface between a learned model and the environment it is trying to predict — and what a "rollout" actually is.

environment interfacerolloutopen-loopclosed-loopsimulator
First Bearings

For anyone finding this territory for the first time

If a world model is an imagined copy of reality, a rollout is what happens when you press play on that imagination — letting it run forward, step by step, to see where it leads. Roll it out ten steps and you get a short daydream; roll it out a thousand and you get a rehearsal for an entire plan.

But daydreams drift. Small mistakes early on compound into big, strange mistakes later — a ball that should have bounced once starts bouncing through the floor. Keeping a rollout honest, for as long as possible, is one of the field's hardest and most practical problems.

Surveyor's Field Notes

For the practitioners building on this ground

An environment interface standardizes how a model and an environment exchange information: an observation in, an action out, a reward and a next observation back (the pattern popularized by OpenAI Gym / Gymnasium). A rollout is a trajectory generated by repeatedly applying this loop — either open-loop, where the model's own past predictions feed its next input, or closed-loop, where ground truth is injected at each step to correct drift.

Open-loop rollouts are what make imagination-based training possible (a policy can practice entirely inside the model), but they are also where compounding error lives: any per-step bias multiplies across the horizon. Most of the engineering craft in this territory is about horizon management — teacher forcing schedules, scheduled sampling, and rollout-length curricula that gradually wean a model off ground-truth crutches without letting it destabilize.

Chief Cartographer's Brief

For the person deciding whether to fund the expedition

This is the territory to interrogate hardest before trusting a vendor's demo. A model that looks flawless at a five-step rollout and is never shown at fifty steps is very likely hiding drift. Ask specifically how error compounds with horizon length, and at what horizon the model's usefulness degrades — that single number is a better indicator of production-readiness than any short highlight reel.

The commercial upside of getting this right is real: a simulator that stays honest over long horizons is what turns "we modeled this" into "we can plan with this," which is the difference between an interesting demo and a system a business can actually stake decisions on.

Further Charts & Source Material

← T-02 History, Foundations & Probabilistic Formulation T-04 State-Space Models →
← Return to the full atlas