Hall of FameAshish Vaswani et al.201727 min readpaperadvanced
Attention Is All You Need
Summary
The paper proposes the Transformer, a sequence‑to‑sequence model that relies solely on self‑attention, eliminating recurrence and convolutions. It achieves state‑of‑the‑art translation BLEU scores while training orders of magnitude faster.
- Self‑attention (scaled dot‑product) and multi‑head attention replace RNN/CNN layers, enabling full parallelism across sequence positions.
- Positional encodings using sinusoids inject order information without recurrence.
- Six identical encoder and decoder layers with residual connections and layer‑norm yield a 512‑dimensional model.
- Transformer reaches 28.4 BLEU (EN‑DE) and 41.8 BLEU (EN‑FR) with 12‑hour training on 8 GPUs, far cheaper than prior models.
Anyone building or researching sequence models should understand the Transformer, as it underpins modern LLMs and most state‑of‑the‑art NLP systems.
10/10
