← Maths & Science

The Bitter Lesson

A reader's summary of Richard Sutton's 2019 essay — its history, author, main ideas, critiques, and its afterlife as the intellectual case for scaling compute over encoding expertise. Editorial synthesis, not a substitute for the essay.

The essay at a glance

In a short 2019 blog post, reinforcement-learning researcher Richard Sutton argued that seventy years of AI research point to one recurring, uncomfortable lesson: general-purpose methods that leverage ever-more-available computation — search and learning — eventually beat methods that encode human domain knowledge directly into a system. The lesson is “bitter” because it is learned the same way, again and again, by researchers who instinctively want to build their own understanding into their systems, only to watch a cruder but more scalable method overtake it once enough compute is available.

The author

Richard S. Sutton is a professor at the University of Alberta and, at the time of writing, a distinguished research scientist at DeepMind — widely credited as one of the founders of modern reinforcement learning, and co-author with Andrew Barto of Reinforcement Learning: An Introduction, the field's standard textbook. He posted “The Bitter Lesson” to his personal site on March 13, 2019, as a short essay rather than a formal paper, distilling an argument he had been making in talks for some time.

History and context

Sutton wrote the essay after decades inside a field that repeatedly relitigated the same argument: computer chess in the 1990s, computer Go and speech recognition in the 2000s and 2010s, computer vision through the deep-learning turn — in each case, researchers built systems encoding what experts believed mattered about the domain, and in each case a more general search- or learning-based method, given enough compute, eventually surpassed it. He wrote it in early 2019, months before GPT-2 and years before the scaling-driven large language models that followed, but the essay is now read almost universally through that later lens — as the clearest early statement of the case for scale that the rest of the field caught up to.

Main ideas

Two methods scale with compute

Sutton identifies exactly two techniques that continue to improve as more computation becomes available: search (exploring a large space of possibilities) and learning (extracting patterns from data). Everything else — hand-built rules, human-encoded domain structure — does not scale the same way.

Human knowledge helps in the short run, hurts in the long run

Building in a researcher's understanding of a domain produces faster initial progress and satisfying, interpretable systems — but it also caps how far the system can go, and tends to make the architecture harder to adapt once far larger compute becomes available.

Chess: brute-force search beat encoded grandmaster knowledge

Deep Blue beat Kasparov in 1997 through massive brute-force search over positions, not through emulating human chess intuition — a result the field found deflating at the time, since it suggested search-and-compute, not encoded expertise, was the winning approach even then.

Go: dropping human knowledge entirely won bigger

AlphaGo (2016) still used human game records and hand-crafted features; AlphaGo Zero and AlphaZero (2017) discarded human data and domain knowledge altogether, learning purely through self-play — and played stronger Go than any version that had used human knowledge as a starting point.

Speech and vision followed the same arc

Statistical, data-driven approaches to speech recognition beat systems built on human-derived linguistic rules; deep learning's learned features later beat hand-designed computer vision features like SIFT — in Sutton's telling, the same story recurring across every subfield of AI he traces.

The meta-lesson: build in the ability to find, not the finding

Sutton's prescription is not 'ignore domain knowledge' but 'don't build in what you think the answer looks like.' Build in the capacity to discover — search over a space, learn from experience at scale — and let compute plus data do the rest as it grows.

Critique

  • Domain knowledge still matters for some problems. Systems like AlphaFold combine learning at scale with substantial domain-specific structure (physical and chemical constraints), suggesting the lesson is not “never encode knowledge” but a harder judgment call about which knowledge helps versus which merely caps future scaling.
  • The world-model rebuttal. Yann LeCun has argued that pure scaling of search-and-learning within today's autoregressive architectures is running into real limits, and that progress now requires building in more structure — world models, not less — a direct challenge to reading the essay as “just add compute.” See LeCun against the LLM for the fuller argument.
  • Survivorship in the case studies. The essay's examples are all domains where search and learning eventually did scale well; it says less about domains — small data, expensive real-world experiments, high-stakes low-error-tolerance settings — where that has not obviously held so far.
  • Compute-scaling has its own costs. Critics note the essay's framing treats compute as if it were free to keep growing; in practice energy, capital, and chip-supply constraints make “just wait for more compute” a strategy with its own limits, not a law of nature.

Impact

The essay became one of the most cited short texts in modern AI, and arguably the closest thing the field has to a founding manifesto for the scaling era: as GPT-3, GPT-4, and successive large language models validated the pattern Sutton described — general architectures, more data, more parameters, more compute, outperforming hand-engineered alternatives — the essay was invoked constantly to explain why. It sits in direct tension with Scaling Laws for Neural Language Models, which supplied the empirical curves for the same claim the essay made philosophically a year earlier, and in direct debate with LeCun's world-model program, which questions how far the lesson can keep being learned inside today's architectures. Sutton's title also names, from inside a single research field, the exact misjudgment Amara's Law describes in general: decades of researchers underestimating how far scale would go is the bitter, specific, well-documented case of Amara's more general claim that a technology's long-run effect gets underestimated precisely because its short-run effect was overestimated first.

Notable engagements

  • OpenAI's scaling narrative — repeatedly cited, explicitly and implicitly, as the intellectual justification for prioritizing scale over hand-built structure across GPT-2 through GPT-4 and beyond.
  • Yann LeCun's JEPA program — the most prominent sustained counter-argument, made by a researcher arguing the next gains require more built-in structure, not less.
  • AlphaGo Zero / AlphaZero (2017) — the essay's own preferred proof case, published two years before the essay and cited in it directly.
  • Widespread ML-community citation — routinely invoked in talks and papers as shorthand for “bet on scale, not on hand-engineering,” often without qualifying which of Sutton's more careful caveats survive the citation.
How to read this page. An editorial summary for orientation: exposition follows the essay; critiques and engagements are limited to well-documented, published ones. Companions in the series: Scaling Laws for Neural Language Models and LeCun against the LLM.