Back to Reinforcement Learning Mind Map
中文·English
🎮 Reinforcement LearningID: world-model

World Model Learning

世界模型学习 (World Model)
🎯Core Definition
A world model parameterized by ϕ\phi learns the environment's transition and reward distribution Pϕ(s,rs,a)P_\phi(s', r | s, a): given state ss and action aa, predict next state ss' and immediate reward rr. Training is maximum likelihood estimation (MLE): maxϕ  E(s,a,r,s)D[logPϕ(s,rs,a)]\max_\phi \; \mathbb{E}_{(s, a, r, s') \sim \mathcal{D}} \left[ \log P_\phi(s', r | s, a) \right] with D\mathcal{D} the collected real interaction dataset. Once learned, the model substitutes for the environment to generate 'imagined rollouts', reusing each real sample for many simulated updates and plans.
💡Use Cases
environments where real interaction is expensive or dangerous (robotics, autonomous driving, healthcare); pixel inputs needing latent-space models (cf. Dreamer/MuZero); imagined planning with a planner (cf. MPC). Common interview entry: model-based vs model-free.
Key Problems Solved
model-free RL needs vast real interaction, hurting sample efficiency; a world model 'internalizes' the environment as a first-order approximation so the agent trains and plans repeatedly in imagination — roughly an order-of-magnitude sample-efficiency gain — at the cost of model bias polluting the policy (compounding error O(H2ε)O(H^2\varepsilon), see model-vs-model-free).
🎯5 High-Frequency Exam Points
1
What is the world model's training objective? Write the MLE objective and explain each term.
2
Why does a world model improve sample efficiency? Imagined rollouts vs real interaction?
3
How does model error hurt the downstream policy? What is compounding error O(H²ε)?
4
Explicit (pixel/state-level) vs implicit (latent) world models — differences? One example each?
5
Beyond classic RL, what new world-model applications exist for LLMs/agents?
Updated 2026-08-12
🎯
Test Your Knowledge: Practice Questions for "World Model Learning"
Single choice pitfall questions with instant feedback and mistake tracking.
🚀 Start Card Practice
Previous CardOffline-to-Online Fine-TuningNext CardDyna Architecture (Dyna-Q)

🔗 More Reinforcement Learning Knowledge Cards

Actor-CriticBehavioral CloningContextual BanditCoT & Reasoning RL