Vaswani et al. propose the Transformer, a sequence-transduction architecture based solely on attention mechanisms, dispensing with recurrence and convolutions entirely. Attention lets every output position attend directly to every input position, so the model is highly parallelizable and learns long-range dependencies easily. On two WMT-2014 machine-translation tasks the Transformer is both higher quality and much faster to train than the best recurrent/convolutional models, achieving 28.4 BLEU (English→German) and a new single-model state of the art of 41.0 BLEU (English→French) after 3.5 days on eight GPUs.
"We propose a new simple network architecture, the Transformer, based solely on attention mechanisms, dispensing with recurrence and convolutions entirely."
One of the most consequential papers in modern machine learning: it showed that the recurrence everyone assumed necessary for sequence modeling was optional, and that pure attention — parallelizable and in path length — was not only sufficient but better. The engineering choices that made it work (the scaling, multiple heads, sinusoidal positions, residual+layernorm blocks) are all still standard. Its relevance to this wiki is oblique but growing: the Transformer is the backbone of the LLMs reshaping every field, and self-attention has become a serious tool for time-series forecasting, where it competes with the classical and machine-learning methods catalogued elsewhere here. The honest caveat is the quadratic cost and data hunger — attention buys flexibility by discarding inductive bias, which is exactly why it needs scale to shine.