newsfilter.io
Fireside Chat, Interview, Lecture

World Models, JEPA And The Path To Sample-Efficient RL

  • Core Problem Definition: The primary open challenge in AI is sample efficiency (intelligence per sample), defined as the rate of skill acquisition rather than the total accumulated skills.

    • Humans exhibit high sample efficiency, mastering new tasks after a handful of tries.
    • Current state-of-the-art models require tens of thousands of data points to learn similar tasks.
    • Frontier AI systems currently fail on ARC-AGI and similar puzzle sets where humans succeed intuitively despite models having been trained on the entire internet.
  • World Models and Perfect Efficiency:

    • A "perfect" world model implies zero samples needed for training, allowing an agent to predict outcomes and plan actions purely via simulation.
    • Newtonian Physics serves as a real-world example of a perfect world model, enabling precise trajectory planning (e.g., NASA asteroid interception) without environmental data collection.
    • Humans utilize implicit world models for social prediction (e.g., anticipating investor reactions) and motor skills.
    • A 1967 cognitive science study (Richardson) showed that mentally visualizing basketball layups improved performance by 23%, comparable to physical practice (24%), demonstrating the power of internal world modeling.
    • Stanford neuroscientist Shaw Drachman posits that the Great Cortical Expansion (10 million years ago) evolved specifically to enhance world modeling capabilities.
  • Control Theory and Differentiability:

    • Deterministic Control (e.g., drone landing) relies on known, differentiable transition functions (like $F=ma$), solvable via Model Predictive Control (MPC) and convex optimization.
    • Non-Differentiable/Adversarial Scenarios (e.g., two drones colliding) introduce stochasticity, rendering the transition function non-differentiable and forcing reliance on Reinforcement Learning (RL).
    • Standard RL requires estimating a policy ($a_t|s_t$), a world model (transition function $s_{t+1}|s_t, a_t$), and a value function (expected future reward).
    • Joint Training of world and action models is preferred over separate training to reduce computational cost during test-time planning.
  • Scaling Challenges in Action Spaces:

    • Chess: Highly tractable for RL due to a small action space (~8 valid moves on average), despite a massive state space. Solved by AlphaGo using Monte Carlo Tree Search (MCTS).
    • Go: Larger state space (19x19 grid) and action space (361 moves); AlphaGo required 800 MCTS simulations per move (approx. 24,000 model invocations).
    • Scaling Limit: Increasing the action space by 100x would require millions of simulations per move, making MCTS computationally infeasible in real-time.
    • Self-Driving: Action space cardinality is ~365,000 (steering angles $\times$ brake intensities), which is 100x larger than Go.
      • State space is effectively infinite due to continuous pixel inputs, weather, and dynamic human behavior.
      • Model-Free RL (VLA/Behavior Cloning) predicts actions directly from state but lacks planning capabilities.
      • Model-Based RL is required for true planning but struggles with real-time inference costs in high-dimensional spaces.
    • Robotics: Action space is astronomical (~$10^{16}$ for complex manipulators), and teleoperation data is scarce and expensive.
      • Cross-Embodiment Gap: Policies trained on one vehicle (Model X) often fail on another (Model 3) due to distinct dynamics; Tesla likely shards data per model.
  • Evolution of World Modeling Architectures:

    • Dreamer Series: Juergen Schmidhuber's "World Models" (2016) and Danijar Hafner's "Dreamer" series (2018–present) demonstrated training policies on synthetic data generated by a learned world model.
      • Dreamer V4 achieved "mining diamonds" in Minecraft using only synthetic rollouts and minimal real-world action conditioning.
    • Video Diffusion Models: Current State-of-the-Art (SOTA) leverages video diffusion (e.g., Sora, Runway) as the base world model.
      • Action Conditioning: A small amount of teleoperation data (~500 hours) is injected post-training to enable the model to respond to actions.
      • Synthetic Training: These models generate vast amounts of synthetic data for policy training, reducing reliance on scarce real-world trajectories.
    • JEPA (Joint Embedding Predictive Architecture): Compresses high-dimensional state (pixels) into latent spaces to predict future latent states ($z_{t+1}$) rather than raw pixels, improving efficiency.
      • Prevents "modal collapse" via techniques like SigReg or VICReg.
      • Emerging research applies JEPA principles to LLMs, using latent embeddings as a proxy for cross-entropy loss.
  • Open Problems and Limitations:

    • Physics-Informed Neural Networks (PINNs): Fail to generalize to rare "tail events" (e.g., driving into a house) because training data is dominated by normal driving distributions.
    • Optimization Limits: SGD cannot achieve machine precision for complex physical simulations (e.g., friction, surface irregularities), unlike human intuition (e.g., Steph Curry sensing a "dead spot" in a court).
    • Architecture Constraints: Sam Altman suggests Transformers are suboptimal for time-domain compression; new architectures may be required.
    • Test-Time Adaptation: Current models lack the rapid, out-of-distribution adaptation seen in humans (e.g., instantly adjusting to changing road friction).
    • Sensory Gaps: Robotics lacks high-fidelity tactile feedback (temperature, shear force, friction), making fine motor control (e.g., tying shoelaces) difficult without simulation.
  • Forward-Looking Statements and Predictions:

    • 2026 Prediction: The year of "Roomba-like" robots in homes, where world models and synthetic training unlock affordable, general-purpose robotics.
    • Full Self-Driving (FSD): Expected to be solved with increased compute for parallel planning, though complex edge cases (e.g., parking jams) will require further iteration.
    • Research Trend: Increased focus on "awake sleep" mechanisms—simulating compressed experiences during offline phases to update policies, mimicking hippocampal replay.
    • AGI Path: World models are the necessary bridge to AGI, replicating the brain's ability to predict consequences and plan, though current models still fail the "Squint Test" (lacking the biological optimizer/sleep mechanism).