Timeline

MuZero masters games without being told the rules

The system learned to predict only value, policy and reward rather than the environment's rules, then matched AlphaZero at Go, chess and shogi and set a new Atari benchmark.

  • Models & capabilities
  • Notable

Google DeepMind published MuZero, a reinforcement-learning system that matched or exceeded the superhuman performance of its predecessor AlphaZero at Go, chess and shogi, and set a new state-of-the-art result on the Atari benchmark — without ever being given the rules of any of them.

AlphaZero and its predecessors depended on a perfect, hand-coded simulator: to plan a move, the system needed to know exactly how the game state would change in response, which is straightforward for board games with known rules but unavailable for most real-world problems. MuZero removed that dependency. Rather than learning to model its entire environment, it learned only the three quantities needed to plan — the value of a position, the best policy to follow, and the reward an action would produce — and combined that learned model with the same lookahead tree search AlphaZero used. In Go, DeepMind reported, giving the system more search time produced the same kind of gains as before: performance rose by more than 1,000 Elo points as thinking time increased from a tenth of a second to 50 seconds per move, evidence that the learned model was capturing something planning-useful even without ground-truth rules.

The result mattered because most decision-making problems outside board games — robotics, resource allocation, real-world control — don’t come with a known, simulatable set of rules the way Go does. AlphaZero had shown that planning plus self-play could reach superhuman play; MuZero showed the planning component didn’t require perfect knowledge of the environment to work. It became one of the more frequently cited demonstrations that model-based reinforcement learning could scale to environments where the dynamics themselves have to be discovered, feeding into DeepMind’s later work on more general-purpose planning agents.