All posts

World Models

World Foundation Models Explained: How AI Learns to Simulate Reality

An LLM models language. A video generator paints pixels. A world foundation model does something different and harder: it learns a controllable, physics-aware simulation of an environment — a world you can act inside. Here is what that actually means, how the architectures work, and how builders can start using them today.

Jithin Kumar PalepuJune 4, 202616 min read

A world foundation model (WFM) is a model that learns the dynamics of an environment: given the current state of a world and an action, it predicts the next state. That one capability — simulate, don't just describe — is why WFMs are the most important AI category most builders still can't define. In 2026 they went from research demo to shipping product, with three major launches in six months.

If 2023 was the year of the chatbot and 2024–25 the year of the agent, 2026 is the year the field turned toward the physical world. The thesis is simple and increasingly hard to argue with: an intelligence that has only ever read text has no grounded model of gravity, momentum, occlusion, or cause and effect. To build robots, autonomous vehicles, and agents that act in real space, you need a model that has learned how the world behaves. That model is the world foundation model.

What is a world foundation model?

Strip away the marketing and a WFM is a learned simulator. Formally, it approximates a transition function: take a representation of the world's current state, take an action (a control input, a steering angle, a text instruction, a step forward), and predict the state that results. Roll that prediction forward repeatedly and you get a world you can move through, perturb, and explore — generated on the fly rather than hand-built by an artist.

The key word is controllable. A WFM isn't playing back a recording; it's responding to your inputs. That is what separates it from everything that came before, and it's worth being precise about the distinction, because the terms get blurred constantly.

How is it different from an LLM and a video generator?

All three are generative models trained on huge datasets. The difference is what they modeland whether you can act inside the result.

LLM — models language

Input tokens in, output tokens out. It models the statistics of text and code. No grounded notion of physical space; its “world” is the corpus it read.

Video generator — models pixels

Text or image in, a fixed clip out. Stunning to look at, but passive — once it renders, you can't step in and change what happens next. It approximates appearance, not controllable dynamics.

World model — models state + dynamics

State and action in, the next state out, on every step. Because it's conditioned on your action each frame, you can navigate, intervene, and run counterfactuals — it is interactive by construction.

The litmus test

Can you take an action and have the world respond consistently? If yes, it's a world model. If you can only watch, it's video generation — however physics-aware it looks.

The line is genuinely blurring at the top end — Runway openly reframes its Gen-4.5 as a step toward “General World Models,” and OpenAI's Sora 2 demonstrates real grasp of momentum and forces. But interactivity and action-conditioning are still the dividing line.

How does a world model actually work?

There is no single recipe yet — and the architectural disagreement is itself one of the most interesting things about the field. Three families dominate in 2026.

1. Autoregressive frame prediction (the Genie approach)

Google DeepMind's Genie 3 generates the world one frame at a time, autoregressively, conditioned on both the initial prompt and your ongoing inputs. It runs in real time at 24 frames per second at 720p and stays consistent for a few minutes — long enough to feel like a place rather than a clip. The model learned its physics implicitly, from watching, with no explicit physics engine bolted on.

2. Mixture-of-transformers: reason, then generate (the Cosmos 3 approach)

NVIDIA's Cosmos 3 (launched June 1, 2026) pairs a reasoning transformer with an expert generation transformer — a mixture-of-experts-style split where one part understands object interactions, motion, and spatial-temporal relationships, and the other generates the resulting video and action trajectories. Reason about what should happen, then render it. NVIDIA calls it the first fully open omnimodel: text, image, video, ambient sound, and action in one system.

3. Joint-embedding prediction: skip the pixels (the JEPA approach)

Yann LeCun's camp argues that generating every pixel is wasteful and wrong. JEPA architectures predict in an abstract latent space instead — learning what will happen without rendering how it looks. The bet is that this yields better physical reasoning per FLOP. LeCun left Meta in December 2025 to start a world-model lab around exactly this thesis: that scaling LLMs alone will not get us to grounded intelligence.

An LLM can describe a glass falling off a table. A world model can show you where the pieces land — and let you catch it first.

The 2026 landscape at a glance

The category got crowded fast. The four launches a builder should know:

NVIDIA Cosmos 3

A mixture-of-transformers omnimodel in three variants: Super (max physics accuracy for training robots and AVs), Nano (sub-second generation), and Edge (local, coming soon). Ranks first among open models on Physics-IQ, PAI-Bench, RoboArena and more. Open weights on Hugging Face, deployable as NIM microservices, with a Cosmos Coalition (Runway, Black Forest Labs, Skild AI, others) around it.

Why it matters Open, physical-AI focused. The synthetic-data and robotics workhorse.

DeepMind Genie 3

Interactive environments at 24 fps / 720p, navigable in real time. Shipped to the public as Project Genie (January 2026, US, Google AI Ultra). Waymo fine-tuned it into a Waymo World Model to simulate driving edge cases for training robotaxis.

Why it matters Real-time, playable worlds from a prompt.

World Labs — Marble

Fei-Fei Li's startup builds toward “spatial intelligence.” Marble generates editable, persistent 3D environments from text, image, video, or 360° panoramas, exportable into Unreal/Unity and viewable in VR. Shipped November 2025 on freemium pricing; World Labs has raised ~$1.23B.

Why it matters Persistent 3D worlds for creators and embodied AI.

Runway Gen-4.5 / OpenAI Sora 2

The frontier video models now reason about weight, momentum, and liquids well enough that the line to “world model” is thinning. Runway markets Gen-4.5 explicitly as a path to General World Models.

Why it matters Video generators converging toward world models.

What can builders actually do with them?

This is where WFMs stop being a curiosity. The near-term value is overwhelmingly about generating experience cheaply — reality that's too expensive, too risky, or too rare to capture for real.

Synthetic data generation

Spin up endless labeled, physics-consistent video and sensor data to train perception models — without a fleet collecting footage. This is Cosmos's headline use case.

Sim-to-real policy training

Train a robot or AV control policy inside the model's simulation, then transfer it to hardware. Cosmos 3 generates action trajectories, not just video, specifically for this.

Edge-case simulation

Generate the rare, dangerous scenarios you'll never reliably capture on the road — the exact move Waymo made by fine-tuning Genie 3.

3D content & game worlds

Generate explorable environments for games, film VFX, and design from a prompt, editable in existing pipelines — Marble's territory.

Embodied agents

Give an agent an internal simulator to plan against — imagine an action, predict the outcome, then act. The grounding layer under the next generation of agentic systems.

Planning & counterfactuals

Because you can branch the simulation, you can ask “what if” — run multiple futures and pick the best action before committing in the real world.

How do I start building?

The fastest on-ramp in 2026 is NVIDIA Cosmos, because it's genuinely open. Pragmatic starting points:

  • Cosmos 3 — open weights on Hugging Face and code on GitHub; deploy as NIM microservices. Start with Nano for fast iteration, move to Super when you need physics fidelity for policy training.
  • Genie 3 — consumer access via Project Genie (Google AI Ultra) for hands-on exploration; production/research access is gated.
  • Marble — freemium web product with Unreal/Unity export — the quickest path if your goal is 3D content rather than robotics.

Where they still fall short

WFMs are early, and a builder should go in clear-eyed:

  • Temporal consistency. Even the best models drift after a few minutes — geometry warps, objects forget they existed. “Consistent for minutes” is the current frontier, not “forever.”
  • Hallucinated physics. Learned-from-watching physics is approximate. It looks right far more often than it is right — dangerous if you trust it blindly for safety-critical training.
  • Evaluation is unsolved. “Did the simulation behave like reality?” is much harder to score than a benchmark answer. Sim-to-real gap is real.
  • Compute and access. The heaviest models are expensive to run, and the most capable interactive ones (Genie) remain gated.

Why this matters

Underneath the product launches is a real fork in how the field thinks intelligence will be built. One camp keeps scaling language models. The other — LeCun, Fei-Fei Li, and the physical-AI labs — argues that grounded intelligence requires a model of the world, not just a model of our words about it. Fei-Fei Li calls the goal spatial intelligence: “the frontier beyond language — the capability that links imagination, perception and action.”

You don't have to pick a side to see the consequence. The same scaffolding lessons we covered in harness engineering apply here: the model is one component, and the systems that win wrap it in the right loops, data, and grounding. World foundation models are how AI gets a body to reason about. For builders, 2026 is the year it became something you can actually pick up and use.

Language taught AI to think out loud. World models are teaching it where things fall.

References

Keep Reading

Everything that matters in AI,
straight to your inbox.

Join 12,000+ readers — daily, free, no spam.