Paper Overview
- Field: NLP
- Author: Richard Zhe Wang
- Posted: 2026-09-18
- arXiv: 2609.22005
- Abstention allows an attention head to output nothing, bypassing the requirement that attention weights must sum to one.
- Noise filtering allows the value pathway of an attention head to suppress interference from superposed features in the residual stream.
Abstract (translated)
Gating the value pathway of attention reportedly improves language model pretraining, and prior studies disagree on why. The paper argues, with experimental evidence, that such gates supply two different things that softmax attention lacks: abstention and noise filtering.
Key Findings
1. Scale-dependent benefits: Gains from abstention (measured by relative validation loss improvement over matched baselines) decrease with model scale, while gains from noise filtering increase. At 10M parameters, gating benefits come almost entirely from abstention; at 350M, most come from filtering. 2. Best of both: At every scale, the best-performing model is the one equipped with both primitives simultaneously. 3. Noise injection experiments: Injecting controlled interference into the values read by attention heads confirms that gating removes such interference, and reveals that the two gating forms each have characteristic blind spots.
Adding both primitives increases parameters negligibly and remains compatible with the key-value cache.
Original Abstract (excerpt)
> Gating the value pathway of attention reportedly improves language model pretraining, and prior studies disagree on why. We argue and provide experimental evidence that such gates supply two different things that softmax attention lacks: abstention and noise filtering...