Back to Reinforcement Learning Mind Map
中文·English
🎮 Reinforcement LearningID: muzero

MuZero Latent Model

MuZero 潜空间模型
🎯Core Definition
MuZero extends AlphaZero's tree search to environments with unknown rules by learning dynamics and reward in latent space with three neural functions: ① representation: st0=hθ(st1,at1)s^0_t = h_\theta(s_{t-1}, a_{t-1}) — compresses (history of) observations into a latent state;② dynamics: (sk,rk)=gθ(sk1,ak)(s^k, r^k) = g_\theta(s^{k-1}, a^k) — advances the latent state and predicts reward prp^r;③ prediction: (pk,vk)=fθ(sk)(p^k, v^k) = f_\theta(s^k) — predicts policy and value pvp^v.
📌Overview
MCTS integration: tree edges are expanded by the networks (not a real environment/rule simulator); during simulation the predicted reward rkr^k accumulates along paths and the predicted value vkv^k backs up the return GG; the root policy comes from a softmax over visit counts. Training regresses the three functions against the MCTS-derived policy target and the real observation's reward/value targets. Key point: reward is predicted in latent space by gθg_\theta — there is no explicit model of the real environment's reward — so planning works without a known reward function.
💡Use Cases
board games (chess/shogi/Go at superhuman level), Atari pixel inputs, tasks with unknown rules or rewards; classic interview question: 'how does MuZero remove the explicit rules after AlphaZero?'
Key Problems Solved
AlphaZero relies on a known environment (rules + simulator) for tree search; MuZero replaces the simulator with a latent model, bringing MCTS to real-world tasks with unknown rules and rewards while retaining superhuman play — trading model bias for generality.
🎯5 High-Frequency Exam Points
1
MuZero's three functions (representation/dynamics/prediction): inputs, outputs, and roles?
2
How does MuZero plan without an explicit real-reward model? How is latent reward prediction trained?
3
MuZero's MCTS vs AlphaZero's MCTS: what differs?
4
How are MuZero's policy/value training targets constructed from search?
5
In what sense does MuZero generalize beyond AlphaZero to the real world?
Updated 2026-08-12
🎯
Test Your Knowledge: Practice Questions for "MuZero Latent Model"
Single choice pitfall questions with instant feedback and mistake tracking.
🚀 Start Card Practice
Previous CardModel Predictive Control (MPC)Next CardDreamer RSSM (Latent Imagination)

🔗 More Reinforcement Learning Knowledge Cards

Actor-CriticBehavioral CloningContextual BanditCoT & Reasoning RL