CLMay 11

Learning Less Is More: Premature Upper-Layer Attention Specialization Hurts Language Model Pretraining

arXiv:2605.1050454.7
AI Analysis

For practitioners training causal decoder language models, this work provides a simple intervention to improve pretraining efficiency and final performance, though the effect is incremental and architecture-dependent.

The paper identifies a failure mode in GPT pretraining where upper-layer attention specializes prematurely before lower-layer features stabilize, and shows that temporarily slowing upper-layer Q/K projections during early training improves final perplexity and downstream accuracy. Gated FFNs in LLaMA-style blocks naturally mitigate this issue.

A causal-decoder block is hierarchical: lower layers build the residual basis that upper layers attend over. We identify a failure mode in GPT pretraining: upper layers commit to sharp attention patterns before lower-layer features stabilize. We call this premature upper-layer attention specialization. Temporarily slowing only upper-layer Q/K projections during early training improves final perplexity and downstream accuracy without altering other parameters; it prevents upper attention from collapsing onto an immature residual basis. In LLaMA-style blocks, the same intervention is nearly unnecessary. Through ablations, we isolate multiplicative gated FFNs (not RMSNorm or bias removal) as the component that suppresses the upstream residual writes driving the failure. A pathwise analysis unifies both findings: the learning-rate intervention reduces a step-size factor, while gated FFNs reduce a residual-energy factor on the same growth pathway. Our results identify upper-layer Q/K timing as a concrete interaction point between decoder architecture and optimization.

Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes