Y Combinator Startup Podcast cover
Technology & the Future

World Models, Explained

Y Combinator Startup Podcast

Hosted by Unknown

1h 14m episode
8 min read
5 key ideas
Listen to original episode

NASA already runs the most sample-efficient world model ever built — it's called Newtonian physics — and that reveals exactly what every robot and LLM still…

In Brief

NASA already runs the most sample-efficient world model ever built — it's called Newtonian physics — and that reveals exactly what every robot and LLM still lacks.

Key Ideas

1.

Physics serves as world model

NASA already deploys a perfect world model — it's called Newtonian physics.

2.

Computational complexity varies by domain

AlphaGo needs 24,000 model calls per move; robotics needs 10^16 action space.

3.

State-action pairs create competitive moats

Tesla's real moat: state-action pairs. Everyone else only has video of states.

4.

Pure hallucination solves real tasks

Dreamer mined Minecraft diamonds with zero real gameplay — pure hallucinated rollouts.

5.

Mental simulation matches physical practice

The neocortex is a world model; imagining layups improves skill almost as much as practice.

Why does it matter? Because the most sample-efficient AI ever built has no neural network

The data-hungry training paradigm that defines modern AI rests on a hidden assumption: that you need experience to learn. World models crack that assumption open. This episode builds the case from first principles — starting with Newtonian physics, escalating through AlphaGo, and arriving at a Minecraft milestone that suggests the robotics data bottleneck may already be solvable.

  • NASA doesn't collect a million rocket trajectories to learn orbital mechanics — Newton's laws are a perfect world model, requiring zero training samples
  • AlphaGo requires 24,000 model invocations per move; the same math applied to a robot arm yields a 10^16 action space and is computationally unreachable
  • Tesla is the only company whose training data includes what drivers actually do — not just what the road looks like
  • Dreamer V4 mined diamonds in Minecraft using zero real gameplay, training a policy entirely on synthetic hallucinated rollouts

A perfect world model requires zero training samples — Newton proved it 300 years ago

Zero is the ideal number of training samples, and we already have a system that achieves it. Newton's second law is a perfect world model: given position and velocity at time T, you can compute exactly where any object goes under any applied thrust. NASA intercepts asteroids years in advance without collecting a single training example. SpaceX lands boosters on ocean platforms by solving this as a convex optimization problem — minimize squared deviations from target position and velocity over a sequence of thrust vectors, subject to max-thrust constraints. Closed-form. No data.

The reason this works is differentiability. Physics is differentiable: you can take the gradient of your objective with respect to your controls and let a solver find the optimum. The moment another agent enters — a rival drone, another driver, any actor whose decisions you can't back-propagate through — differentiability collapses. Now you're in reinforcement learning: value functions, policy gradients, Monte Carlo rollouts, actor-critics. The entire sprawling apparatus of RL exists to handle a single property: non-differentiability. World models are the attempt to recover it.

AlphaGo needs 24,000 model calls to make one move — and the math gets catastrophically worse with a steering wheel

Wait 60 seconds to turn a steering wheel and everyone in the car is dead. That's the practical verdict on Monte Carlo Tree Search as a strategy for real-world AI. AlphaGo's approach — 800 simulations, each 30 steps deep — costs 24,000 model invocations just to pick a single action on a 19×19 board with 361 possible moves. Against a human sitting for five minutes on a television documentary, that's manageable. Against a vehicle at highway speed, it's a non-starter.

The action space math makes it worse as the domain scales. A simplified self-driving model — steering wheel discretized into 365 positions, ten brake severities — already yields a 36,000-dimensional action space, roughly 100 times larger than Go. A six-axis robot arm with a basic gripper hits 10^16. Each order of magnitude multiplies test-time simulation cost until the problem is unreachable.

The architectural conclusion is hard: any system that requires separate policy and world model invocations at test time cannot operate in real-world deployment. What's needed is a joint model that outputs both the next action and the next predicted state in a single forward pass — the core idea behind world action models and the Dreamer architecture.

Tesla's actual moat is data no one else has — and the Dreamer paper found a way around it

Every dash cam on YouTube shows what the world looks like. None of it shows what the driver did next. That gap is Tesla's structural advantage: they are the only company collecting state-action pairs at scale. Every time a Tesla driver turns the steering wheel, they're labeling a training example — in this state, a human took this action — without knowing it. Everyone else has trajectories: S_t, S_t+1, S_t+2. Tesla has the action column filled in.

Actions are what make behavior learnable. Without them, you can model the world as it appears; you cannot learn what to do in it.

The Dreamer series is the most convincing workaround. Danijar Hafner's Dreamer V4 trained a video world model on state-only data, then injected action conditioning on a small labeled set. The resulting model generated synthetic rollouts — imagined trajectories through a simulated environment — and trained a policy entirely on that hallucinated data. Zero real gameplay. The policy mined diamonds in Minecraft, a task considered extremely difficult even for experienced human players. The recipe now exists: pre-train a video diffusion model on internet-scale footage, action-condition it on a handful of teleoperation examples, generate millions of synthetic trajectories, train the policy on those.

The human brain imagines layups to get better at them — and that's the strongest argument for world models

A 1967 cognitive science study split people into three groups: one practiced basketball layups for an hour, one spent the same hour imagining shooting layups while blindfolded, one did nothing. The practitioners improved 24%. The imaginers improved 23%. That one-percent gap is noise.

This isn't a metaphor for world models — it's direct measurement that the brain's predictive simulation is precise enough to substitute for physical practice. Stanford neuroscientist Shaw Druckman's interpretation: the entire growth of the neocortex during the great cortical expansion 10 million years ago was driven by selection pressure for better world modeling. A University of Washington paper recently made the mechanism explicit: each cortical area estimates both latent sensory states and actions, and the cortex as a whole predicts the consequences of those actions. That's the state transition equation. Written in neurons.

Auto-regressive LLMs don't obviously pass this test. They predict the next token without running a simulation of what happens next — skipping the computation the neocortex spent millions of years developing. World models, with an explicit transition function and learned policy operating in concert, are structurally much closer to the biological architecture.

Three walls stand between current world models and deployed robots — and none of them are about compute

Steph Curry felt a dead spot in a basketball court through the dribble, mid-dribble, at full speed. No robot sensor catches that. No current optimizer simulates it. No trained model would adapt to it in real time without retraining overnight. Those three gaps — precision, adaptation, touch — are the actual frontier.

On precision: SGD doesn't reach zero residual. For physics-grade body simulation — predicting contact forces well enough to model what happens when a hand grips an unfamiliar object — the error left on the table by stochastic gradient descent is too large. Physics-informed neural networks were supposed to bake physical constraints into training; they don't reliably work. Reaching machine precision probably requires a new optimizer or a new architecture. Sam Altman has suggested the transformer isn't the endpoint, and the fact that it performs no compression in the time domain may be part of why.

On adaptation: humans update from a single out-of-distribution observation — icy patch, unfamiliar opponent, a dead spot underfoot. Estimating friction coefficients in real time and revising a policy without a retraining cycle is unsolved.

On touch: numb your hands and you cannot tie your shoes. The human epidermis detects shear force, temperature, and texture simultaneously across every centimeter of contact surface. Robots get one point sensor.

The companies that solve the architecture problem won't just build better robots — they'll have built the missing organ

The three open problems — precision, adaptation, touch — may converge upstream on the same gap: an architecture that does what the transformer skips. The transformer doesn't compress in the time domain, doesn't maintain a simulatable model of what happens next, and can't update from a single observation without full retraining. If the neocortex is the right template, the missing piece isn't more data or more compute — it's a fundamentally different computational structure. Dreamer proved synthetic rollouts work. The question is whether we can make world models fast, precise, and touch-sensitive enough to run in the real world. The first team that does won't just have better robots. They'll have built the missing organ.


Topics: world models, reinforcement learning, sample efficiency, robotics, self-driving cars, AlphaGo, Monte Carlo tree search, dreamer, JEPA, model predictive control, artificial general intelligence, deep learning, Tesla FSD, neocortex, model-based RL

Frequently Asked Questions

What is a world model and why is Newtonian physics a perfect example?
NASA already deploys a perfect world model — it's called Newtonian physics. A world model is a system that predicts what will happen next based on current state and actions. Newtonian physics enables NASA to accurately predict planetary motion, trajectories, and physical interactions without needing to observe every possible scenario. This perfect predictive capability comes from fundamental physical laws rather than learned patterns. In contrast, AI systems like robots and language models still struggle with world models because they must learn from experience rather than leveraging fundamental principles, explaining why AI requires vastly more training data.
Why does current AI need so many model calls compared to human intelligence?
AlphaGo needs 24,000 model calls per move; robotics needs 10^16 action space. This massive sample efficiency gap reveals that AI systems lack the world models humans develop naturally. Unlike humans who can imagine outcomes and learn from mental simulation, current AI must test possibilities through brute force computation. The neocortex is a world model; imagining layups improves skill almost as much as practice. This biological approach to mental simulation provides exponential advantages in learning efficiency. Current AI systems cannot match this capability without deeper world model integration.
What gives Tesla a competitive advantage in autonomous driving?
Tesla's real moat: state-action pairs. Everyone else only has video of states. This distinction is crucial for building world models. While competitors train systems on video footage of driving scenarios, Tesla has collected actual state-action pairs — the relationship between observations and driver actions. This data allows Tesla to build more accurate world models of causality and reveal cause-and-effect relationships essential for prediction and control. Video alone only shows observational outcomes, whereas state-action pairs demonstrate what actions produce which results, giving Tesla a fundamental edge competitors cannot easily replicate.
How did Dreamer achieve Minecraft performance without real gameplay?
Dreamer mined Minecraft diamonds with zero real gameplay — pure hallucinated rollouts. This achievement demonstrates the power of world models for planning. Dreamer used a learned world model to imagine possible sequences of actions and their consequences entirely within the game's simulated environment. By conducting mental simulations within the world model, the system achieved skilled gameplay without interacting with the actual game. This mirrors how humans mentally simulate before acting, proving that sufficiently accurate world models enable agents to solve complex tasks through imagination alone, reducing costly real-world interaction needs.

Read the full summary of World Models, Explained on InShort