cd /news/artificial-intelligence/the-bitter-lesson-is-the-observation… · home topics artificial-intelligence article
[ARTICLE · art-100515] src=en.wikipedia.org ↗ pub= topic=artificial-intelligence verified=true sentiment=· neutral

The bitter lesson is the observation in artificial intelligence

Richard Sutton's 2019 essay 'The Bitter Lesson' argues that in artificial intelligence, general approaches that scale with computational power outperform domain-specific methods in the long run, as exemplified by Deep Blue, AlphaGo Zero, and deep learning in speech recognition and computer vision. Sutton concludes that investing in scalable techniques like search and learning is more effective than incorporating human insights.

read5 min views1 publishedAug 17, 2026

| Part of |

[Artificial intelligence (AI)](https://en.wikipedia.org/wiki/Artificial_intelligence)

[Glossary](https://en.wikipedia.org/wiki/Glossary_of_artificial_intelligence)

The bitter lesson is the observation in artificial intelligence that, in the long run, general approaches that scale with available computational power tend to outperform ones based on domain-specific understanding because they are better at taking advantage of the falling cost of computation over time. The principle was proposed and named in a 2019 essay by Richard Sutton [1] and is now widely accepted.

[[2]](#cite_note-generalist-agent-2)

[[3]](#cite_note-switch-transformers-3)

[[4]](#cite_note-learning-bitter-lesson-4)

[[5]](#cite_note-eng-less-artificial-5)

[[6]](#cite_note-brain-lesson-6)

[[7]](#cite_note-beyond-imitation-game-7)

[[8]](#cite_note-overestimation-overfitting-actor-critic-8)## The essay

[[edit](/w/index.php?title=Bitter_lesson&action=edit§ion=1)]

Sutton gives several examples that illustrate the lesson:

Game playing. Inchess, theDeep Bluesystem that became the firstcomputer opponentto defeat aworld championrelied on a relatively simplealpha–beta search algorithmthat scaled up by applying large amounts of specialized hardware to search for the best move. This defeated previous attempts to exploit the unique structure of chess or to includegrandmasterknowledge directly. Likewise in the game ofGo, theAlphaGoalgorithm that surpassed human performance relied much less on expert skill at the game itself than previous generations of AI, and was further surpassed byAlphaGo Zero, which removed human expertise completely and trained only byself-play.Speech recognition. Approaches based on training a general-purposehidden Markov modelwith large numbers of speech samples consistently outperformed the hand-crafted approaches of the 1970s, anddeep learninghas continued this trend.Computer vision. Algorithms that were assumed to approximate the humanvisual system(such as explicitly encodededge detectionor detecting high-level features withSIFT) were outperformed byconvolutional neural networksthat make far fewer assumptions about the nature ofvisual perception.

Sutton concludes that time is better invested in finding simple scalable solutions that can take advantage of Moore's law, rather than introducing ever-more-complex human insights, and calls this the "bitter lesson". He also cites two general-purpose techniques that have been shown to scale effectively: search and learning. The lesson is considered "bitter" because it is less anthropocentric than many researchers expected and so they have been slow to accept it.

Impact #

[edit] The essay was published on Sutton's website incompleteideas.net in 2019, and has received hundreds of formal citations according to Google Scholar. Some of these provide alternative statements of the principle; for example, the 2022 paper "A Generalist Agent" from Google DeepMind summarized the lesson as:[2]

Historically, generic models that are better at leveraging computation have also tended to overtake more specialized domain-specific approaches, eventually.

Another phrasing of the principle is seen in a Google paper on switch transformers coauthored by Noam Shazeer:[3]

Simple architectures—backed by a generous computational budget, data set size and parameter count—surpass more complicated algorithms.

The principle is further referenced in many other works on artificial intelligence. For example, From Deep Learning to Rational Machines draws a connection to long-standing debates in the field, such as Moravec's paradox and the contrast between neats and scruffies. [9] In "Engineering a Less Artificial Intelligence", the authors concur that "flexible methods so far have always outperformed handcrafted domain knowledge in the long run" although note that "[w]ithout the right (implicit) assumptions,

generalizationis impossible". More recently, "The Brain's Bitter Lesson: Scaling Speech Decoding With Self-Supervised Learning" continues Sutton's argument, contending that (as of 2025) the lesson has not been fully learned in the fields of speech recognition and

[5]brain data. [6]Other work has looked to apply the principle and validate it in new domains. For example, the 2022 paper "Beyond the Imitation Game" applies the principle to large language models to conclude that "it is vitally important that we understand their capabilities and limitations" to "avoid devoting research resources to problems that are likely to be solved by scale alone". [7] In 2024, "Learning the Bitter Lesson: Empirical Evidence from 20 Years of CVPR Proceedings" looked at further evidence from the field of computer vision and

pattern recognition, and concludes that the previous twenty years of experience in the field shows "a strong adherence to the core principles of the 'bitter lesson'".

In "Overestimation, Overfitting, and Plasticity in Actor-Critic: the Bitter Lesson of Reinforcement Learning", the authors look at generalization of

[[4]](#cite_note-learning-bitter-lesson-4)[actor-critic algorithms](https://en.wikipedia.org/wiki/Actor-critic_algorithm)and find that "general methods that are motivated by stabilization of

[gradient-based learning](https://en.wikipedia.org/wiki/Gradient_descent)significantly outperform

RL-specific algorithmic improvements across a variety of environments" and note that this is consistent with the bitter lesson.

[[8]](#cite_note-overestimation-overfitting-actor-critic-8)## References

[[edit](/w/index.php?title=Bitter_lesson&action=edit§ion=3)]

Sutton, Rich (March 13, 2019)."The Bitter Lesson".www.incompleteideas.net. Retrieved September 7, 2025.12Reed, Scott; Zolna, Konrad; Parisotto, Emilio; et al. (2022)."A Generalist Agent".Transactions on Machine Learning Research(2834–8856).arXiv:2205.06175. Retrieved September 7, 2025.12Fedus, William; Zoph, Barret; Shazeer, Noam (2022)."Switch Transformers: Scaling to Trillion Parameter Models with Simple and Efficient Sparsity".Journal of Machine Learning Research.23(120): 1–39. Retrieved September 14, 2025.12Yousefi, Mojtaba; Collins, Jack."Learning the Bitter Lesson: Empirical Evidence from 20 Years of CVPR Proceedings".Proceedings of the 1st Workshop on NLP for Science (NLP4Science). Association for Computational Linguistics. pp. 175–187. Retrieved September 7, 2025.12Sinz, Fabian H.; Pitkow, Xaq; Reimer, Jacob; et al. (2019)."Engineering a Less Artificial Intelligence".Neuron.103(6). Elsevier: 967–979.doi:10.1016/j.neuron.2019.08.034. Retrieved September 13, 2025.12Jayalath, Dulhan; Landau, Gilad; Shillingford, Brendan; Woolrich, Mark; Parker Jones, ʻŌiwi (2025)."The Brain's Bitter Lesson: Scaling Speech Decoding With Self-Supervised Learning".Forty-second International Conference on Machine Learning. Proceedings of Machine Learning Research. Retrieved September 13, 2025.12Srivastava, Aarohi; Rastogi, Abhinav; Rao, Abhishek; Awal, Abu; Abid, Abubakar; et al."Beyond the Imitation Game: Quantifying and extrapolating the capabilities of language models".The Fourteenth International Conference on Learning Representations.12Nauman, Michal; Bortkiewicz, Michał; Miłoś, Piotr; Trzciński, Tomasz; Ostaszewski, Mateusz; et al. (2024)."Overestimation, Overfitting, and Plasticity in Actor-Critic: the Bitter Lesson of Reinforcement Learning".Proceedings of the 41st International Conference on Machine Learning. Proceedings of Machine Learning Research. Retrieved September 13, 2025.Buckner, Cameron J. (December 11, 2023).From Deep Learning to Rational Machines: What the History of Philosophy Can Teach Us about the Future of Artificial Intelligence. Oxford University Press.doi:10.1093/oso/9780197653302.001.0001.ISBN9780197653302.

── more in #artificial-intelligence 4 stories · sorted by recency
── more on @richard sutton 3 stories trending now
sponsored brought to you by zahid.host 4,200+ EU-deployed projects
reading about agents? ship yours in a single git push.

Run your AI side-project on zahid.host

EU-based hosting, git-push deploys, automatic HTTPS, no cold starts. Free tier with a custom domain — perfect for shipping the agent you just read about.

$git push zahid main
Live at https://your-agent.zahid.host
Get free account → Pricing
from €0/mo · no card required
LIVE [news/the-bitter-lesson-is…] indexed:0 read:5min 2026-08-17 ·