The transformer moment
Why did the Transformer change the course of AI?
Because the Transformer trained in parallel rather than step by step, researchers could build much larger models on much more text. That ability to scale, more than any single trick, set off the modern era of language models.
A faster way to train translation models does not sound like a turning point. The reason it became one is subtle. Older designs read text one step at a time, which meant the computer mostly waited on itself: step two could not start until step one finished. Even the recurrent models that added attention on top “still suffered from the same issue,” unable to run in parallel over a whole sequence and unable to take full advantage of GPUs as a result.[2] The Transformer’s attention looks at the whole input together, so the math spreads across many processors at once.[1] That single property removed the main bottleneck on size.
When a design trains in parallel, you can throw far more computing power and far more text at it without the training time becoming impossible. Researchers could now build models with many more internal settings, trained on a far larger slice of the written web. The lever stopped being a clever new architecture and started being scale.
The original paper was about translation, and its authors could not have spelled out everything that would come next. But the architecture they described turned out to be general. Nearly every well-known language model since has been a Transformer of one kind or another. By 2026 the paper had been cited more than 250,000 times, placing it among the top ten most-cited papers of the 21st century.[2] That’s an unusual amount of influence for a paper whose stated subject was machine translation.
References
- Attention Is All You Need — arXiv (Vaswani et al., 2017)
- Attention Is All You Need — Wikipedia