Post

Lost in Backpropagation: The LM Head is a Gradient Bottleneck

arXiv

Abstract
The last layer of neural language models (LMs) projects output features of dimension $D$ to logits in dimension $V$, the size of the vocabulary, where usually $D \ll V$. This mismatch is known to raise risks of limited expressivity in neural LMs, creating a so-called softmax bottleneck. We show the softmax bottleneck is not only an expressivity bottleneck but also an optimization bottleneck. Backpropagating $V$-dimensional gradients through a rank-$D$ linear layer induces unavoidable compression, which alters the training feedback provided to the vast majority of the parameters. We present a theoretical analysis of this phenomenon and measure empirically that 95-99% of the gradient norm is suppressed by the output layer, resulting in vastly suboptimal update directions. We conduct controlled pretraining experiments showing that the gradient bottleneck makes trivial patterns unlearnable, and drastically affects the training dynamics of LLMs. We argue that this inherent flaw contributes to training inefficiencies at scale independently of the model architecture, and raises the need for new LM head designs.

This work was co-authored with my postdoctoral advisor Yoav Artzi at Cornell Tech.

Here is the PDF version of the paper that you can also find on arXiv:

Please cite as:

1
2
3
4
5
6
7
8
@misc{godey2026lost,
      title={Lost in Backpropagation: The LM Head is a Gradient Bottleneck},
      author={Nathan Godey and Yoav Artzi},
      year={2026},
      eprint={2603.10145},
      archivePrefix={arXiv},
      primaryClass={cs.CL}
}
This post is licensed under CC BY 4.0 by the author.