AIAny

Playing Atari with Deep Reinforcement Learning

First model to learn control policies straight from raw Atari pixels, pairing a convolutional net with Q-learning and experience replay. One unchanged architecture played seven games, beating prior methods on six and a human expert on three.

Introduction

Before this paper, reinforcement learning that worked tended to rely on hand-engineered features; the moment you fed an agent raw pixels, the combination of noise, delayed rewards, and correlated, non-stationary data broke it. The lasting insight here is that two pragmatic fixes — experience replay (storing transitions and sampling them at random) and a convolutional network reading the screen directly — were enough to make deep learning and RL finally cooperate at scale.

Key Findings
  • A single network architecture and hyperparameter set learned seven different Atari 2600 games from the same 84x84 pixel input, with no per-game tuning — evidence the approach generalizes rather than overfits one task.
  • Experience replay was the load-bearing trick: random sampling broke the temporal correlations that destabilize naive online Q-learning, turning a notoriously divergent setup into something trainable.
  • It outperformed prior methods on six of seven games and beat a human expert on three, the first credible demonstration that an agent could learn competent control end-to-end from vision alone.
Who Should Read It, and the Caveats

Great fit if you want the conceptual origin of the deep RL wave — DQN, Rainbow, and most pixel-based agents trace back here, and the writing is short and readable. Look elsewhere for state-of-the-art numbers: this is the 2013 NIPS workshop version, predating the larger 2015 Nature paper that added a target network and full 49-game results. It is also sample-hungry and value-based only, so it offers little to practitioners focused on policy-gradient or continuous-control methods.

Information

  • Websitearxiv.org
  • OrganizationsDeepMind Technologies
  • AuthorsVolodymyr Mnih, Koray Kavukcuoglu, David Silver, Alex Graves, Ioannis Antonoglou, Daan Wierstra, Martin Riedmiller
  • Published date2013/12/19

More Items

Analyzes adversarial weaknesses of World-Action Models (WAMs) via BadWAM, a framework that crafts visual perturbations to decouple a model’s imagined future from its executed actions. Introduces two attack modes—action-only (disruptive) and imagination-preserving (stealthy)—and shows large drops in closed-loop task success (e.g., 96.5%→43.1%).

Converts completed on-policy trajectories into natural-language 'hindsight skills' and converts the skill-induced action probability shifts into a dense token-level on-policy distillation signal, jointly optimized with outcome-based RL to improve sample efficiency and long-horizon agent behavior.

Uses pretrained multimodal LLMs as zero-shot, training-free reward models for text-to-image RL by scoring how well the original text prompt can be recovered from a generated image via image-conditioned prompt log-likelihood; includes a Self-SpectraReward closed-loop variant.