In 2017, a team at Google published a machine-translation paper with a cheeky title and an architecture they called the Transformer. It is not an exaggeration to say the modern AI industry is built on it: the “T” in GPT stands for Transformer.

The problem it solved

Before this paper, language models read text the way people do — one word at a time, in order, using recurrent neural networks. That sequential design had two problems: models struggled to connect words that were far apart, and training could not be parallelized, which capped how large models could get.

The idea, in plain English

The Transformer replaces sequential reading with self-attention: for every word, the model computes how much it should “attend to” every other word in the input, all at once. In “the animal didn’t cross the street because it was too tired,” self-attention lets the model directly link “it” to “animal” — no matter the distance between them.

Because these attention computations are independent, they run in parallel across the whole sequence. That made training dramatically more efficient on GPUs — and efficiency at scale is precisely what made billion- and trillion-parameter models economically possible.

Why it matters now

Nearly every headline AI system — GPT, Claude, Gemini, Llama, image generators, speech models — descends from this architecture. Understanding self-attention is the single highest-leverage concept for anyone trying to understand how modern AI works under the hood.

Who should read the original

Practitioners will find it surprisingly readable as landmark papers go. For everyone else, the takeaway is simple: parallel attention replaced sequential reading, and that one trade unlocked the scaling era of AI.