REVIEW 1 major objections 5 minor 17 references
Most important LLM weights can't be fine-tuned alone
Reviewed by Pith at T0; open to challenge. T0 means a machine referee read the full paper against a public rubric. the ladder, T0–T4 →
T0 review · glm-5.2
2026-07-10 02:08 UTC pith:F7RFWX6U
load-bearing objection Clean experimental design with a real gap between claims and controls the 1 major comments →
Super Weights in LLMs and the Failure of Selective Training
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
Core claim
The central discovery is a dissociation: the parameters most critical for a model's function (as measured by pruning sensitivity) are precisely the ones that cannot be trained in isolation. This is not a general failure of sparse training — random positions at matched sparsity in the same layers succeed — but a specific failure of targeting Super Weight coordinates, attributable to gradient amplification at outlier positions and the destruction of relational structure that those weights depend on. The finding inverts the natural intuition that important parameters should be the best targets for efficient fine-tuning, and shows that LoRA succeeds not because it is sparse but because its low-r
What carries the argument
Super Weights
Load-bearing premise
The claim that the failure is specific to Super Weight coordinates (rather than to sparse training in general) rests primarily on a single random-position control experiment using one seed at one parameter budget on one model scale, which the authors themselves flag as a limitation.
What would settle it
If random positions at matched sparsity also collapse to random guessing under different seeds or parameter budgets, the specificity claim weakens — the failure would then be attributable to sparse training itself rather than to Super Weight coordinates.
Where Pith is reading between the lines
- If the importance/trainability dissociation holds more broadly, methods that use saliency or magnitude to select fine-tuning targets may be systematically choosing the worst possible parameters to train.
- The gradient amplification mechanism suggests a general principle: parameters in high-curvature regions of the loss landscape are both more important for model function and harder to train, creating an inverse relationship between pruning criticality and trainability.
- The result implies that the intrinsic dimensionality framework for fine-tuning needs refinement: not all low-dimensional subspaces are equal, and coordinate-aligned subspaces are qualitatively inferior to low-rank subspaces even at comparable dimensionality.
- The architecture-specific nature of Super Weight identification suggests that the interaction between parameter importance and trainability may depend on pretraining dynamics in ways that differ across model families.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. This paper investigates whether Super Weights—individual parameters whose removal catastrophically degrades LLM performance—can be fine-tuned in isolation. The authors find that training Super Weights and their local neighborhoods (100–36,864 parameters) collapses accuracy to random-guessing levels on OLMo-1B and OLMo-7B, while full-layer low-rank updates (LoRA) succeed. A random-position control on the same down_proj layers improves over baseline, which the authors use to argue the failure is specific to Super Weight coordinates rather than to sparsity or module choice. The paper also shows that constraining LoRA updates at positions corresponding to Super Weight coordinates has no measurable effect across a 10-seed ablation. Theoretical analysis via intrinsic dimensionality and optimizer dynamics is provided in Appendices H–I.
Significance. The paper addresses a well-posed and timely question: whether parameter importance (as defined by pruning sensitivity) implies parameter trainability in isolation. The experimental design is a strength: six experiments with appropriate controls, a 10-seed ablation for the key LoRA comparison, and two model scales. The random-position control isolating the failure to specific coordinates is a strong design choice. The theoretical framework (Proposition 1, Theorem 1) provides falsifiable predictions mapped to experimental results. The finding that LoRA's full-layer coordination drives success while isolated training of important weights fails is a useful contribution to the PEFT literature. However, the central specificity claim has a confound that needs to be addressed before the contribution is fully established.
major comments (1)
- The paper's central specificity claim is: 'The failure is specific to Super Weight coordinates' (Abstract, §4.8, Table 6). However, the training experiments use 'top-k Super Weights by magnitude' (Table 2 caption), meaning the k highest-magnitude weights in down_proj. Only 2–9 of these are confirmed activation-spike Super Weights (Table 1); at k=8,192, the vast majority of trained positions are simply high-magnitude non-Super-Weight positions. Yet all k values collapse to chance. The random-position control (k=4,096, seed 42) trains random down_proj positions, which are overwhelmingly low-magnitude. The paper therefore cannot distinguish between two hypotheses: (H1) the failure is specific to Super Weight coordinates, versus (H2) the failure is specific to high-magnitude coordinates. The paper's own gradient amplification theory (Appendix H, Eq. 5) predicts H2: large weights create a '→'
minor comments (5)
- Table 2 caption: 'top-k Super Weights by magnitude' is ambiguous about whether these are confirmed activation-spike Super Weights or simply high-magnitude positions. Clarify which positions are being trained.
- §3.1 states 'We identify Super Weights by magnitude ranking,' but Appendix B shows magnitude-based identification does not generalize to all architectures. Clarify the identification method used for training experiments vs. pruning replication.
- Table 6 labels the random-position control with a single seed (seed 42, OLMo-1B only). This should be noted in the table for clarity.
- Appendix I, Experiment 2: the mean Hessian ratio (2.48) falls short of the predicted M² scaling. The paper acknowledges finite-difference noise, but the discrepancy is large enough to warrant discussion of whether the theory's assumptions hold in practice.
- Figure 4: the y-axis label 'Ratio (log scale)' is unclear; specify what ratio is being plotted (e.g., 'Super Weight update / typical position update').
Circularity Check
No significant circularity: theoretical derivations are parameter-free from standard results, and experimental claims rest on independent measurements rather than self-definitional chains.
full rationale
The paper's derivation chain is largely self-contained. Proposition 1 (intrinsic dimensionality) is a parameter-free derivation from standard random matrix theory (Haar measure on the Grassmannian), yielding k/N subspace coverage without fitting any parameter to the data it predicts. Theorem 1 (implicit suppression, 1/M scaling) is derived from first principles of gradient and Hessian computation under stated assumptions, not from a self-cited empirical fit. The experimental claims rest on independent measurements: pruning replication uses coordinates from Yu et al. (2025) (external authors), and the random-position control provides an external comparison group. The gradient amplification explanation (§H.1) is framed as a mechanistic hypothesis, not a fitted prediction. The only minor self-referential element is that the paper's own empirical weight-change measurements (Table 10) are used to validate Proposition 4's prediction about relative perturbation scaling, but this is standard empirical validation of a theoretical prediction, not circular derivation—the prediction (O(1/|W_ij|) scaling) is derived independently before the measurement is compared to it. No step in the paper's argument reduces to its own inputs by construction.
Axiom & Free-Parameter Ledger
free parameters (6)
- LoRA rank r =
8
- LoRA alpha =
16
- Learning rate =
1e-4
- Neighborhood radius =
1
- Scale factor s values =
{0.0, 0.1, 0.2, 0.5, 0.8, 1.0}
- Top-k for direct training =
{100, 1000, 4096, 8192}
axioms (4)
- domain assumption Fine-tuning operates in a low-dimensional subspace S of dimension d << N (Aghajanyan et al., 2021)
- domain assumption Super Weights are identifiable via activation spikes in down_proj layers (Yu et al., 2025)
- domain assumption Weight outliers and activation outliers co-occur with 100% consistency (An et al., 2025)
- ad hoc to paper Diagonal second-order update rule approximates optimizer dynamics
read the original abstract
Recent work identified Super Weights, individual parameters whose removal degrades model performance by orders of magnitude. We show that this degradation due to pruning Super Weights does not universally apply to all LLMs. Furthermore, if these parameters are so important, Super Weight-aware training should be effective. We show the opposite. Training Super Weights in isolation (100 to 8,192 parameters) drops accuracy to random-guessing levels on both OLMo-1B and OLMo-7B, and expanding to local neighborhoods of up to 36K parameters provides no improvement. The failure is specific to Super Weight coordinates: training an equal number of randomly chosen positions in the same down_proj layers instead improves over the baseline, so the collapse comes from targeting Super Weights, not from sparsity itself. Vanilla LoRA, updating every position in attention weight matrices through low-rank structure, succeeds with only 0.16% of parameters, and applying the same low-rank update to down_proj succeeds as well. A 10-seed ablation confirms that constraining LoRA updates at positions corresponding to Super Weight coordinates yields statistically indistinguishable results. These findings establish that parameter importance does not imply parameter trainability in isolation, and that effective fine-tuning relies on structured decompositions over entire layers rather than targeting individually important weights.
Figures
Reference graph
Works this paper leans on
-
[1]
Intrinsic dimensionality explains the effectiveness of language model fine-tuning
Armen Aghajanyan, Sonal Gupta, and Luke Zettlemoyer. Intrinsic dimensionality explains the effectiveness of language model fine-tuning. In Proceedings of the 59th Annual Meeting of the Association for Computational Linguistics and the 11th International Joint Conference on Natural Language Processing (Volume 1: Long Papers), pp.\ 7319--7328, 2021
work page 2021
-
[2]
Systematic Outliers in Large Language Models
Yongqi An, Xu Zhao, Tao Yu, Ming Tang, and Jinqiao Wang. Systematic outliers in large language models. arXiv preprint arXiv:2502.06415, 2025
work page internal anchor Pith review Pith/arXiv arXiv 2025
-
[3]
Think you have Solved Question Answering? Try ARC, the AI2 Reasoning Challenge
Peter Clark, Isaac Cowhey, Oren Etzioni, Tushar Khot, Ashish Sabharwal, Carissa Schoenick, and Oyvind Tafjord. Think you have solved question answering? Try ARC , the AI2 reasoning challenge. arXiv preprint arXiv:1803.05457, 2018
work page internal anchor Pith review Pith/arXiv arXiv 2018
-
[4]
GPT3.int8() : 8-bit matrix multiplication for transformers at scale
Tim Dettmers, Mike Lewis, Younes Belkada, and Luke Zettlemoyer. GPT3.int8() : 8-bit matrix multiplication for transformers at scale. Advances in Neural Information Processing Systems, 35: 0 30318--30332, 2022
work page 2022
-
[5]
Approximation theory for lipschitz continuous transformers.arXiv preprint arXiv:2602.15503, 2026
Takashi Furuya, Davide Murari, and Carola-Bibiane Sch \"o nlieb. Approximation theory for lipschitz continuous transformers. arXiv preprint arXiv:2602.15503, 2025
-
[6]
OLMo : Accelerating the science of language models
Dirk Groeneveld, Iz Beltagy, Evan Walsh, Akshita Bhagia, Rodney Kinney, Oyvind Tafjord, Ananya Harsh Jha, Hamish Ivison, Ian Magnusson, Yizhong Wang, et al. OLMo : Accelerating the science of language models. In Proceedings of the 62nd Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers), pp.\ 15789--15809, 2024
work page 2024
-
[7]
LoRA : Low-rank adaptation of large language models
Edward J Hu, Yelong Shen, Phillip Wallis, Zeyuan Allen-Zhu, Yuanzhi Li, Shean Wang, Liang Wang, and Weizhu Chen. LoRA : Low-rank adaptation of large language models. In ICLR, 2022
work page 2022
-
[8]
The emergence of essential sparsity in large pre-trained models: The weights that matter
Ajay Jaiswal, Shiwei Liu, Tianlong Chen, and Zhangyang Wang. The emergence of essential sparsity in large pre-trained models: The weights that matter. Advances in Neural Information Processing Systems, 36: 0 38887--38901, 2023
work page 2023
-
[9]
On relation-specific neurons in large language models
Yihong Liu, Runsheng Chen, Lea Hirlimann, Ahmad Dawar Hakimi, Mingyang Wang, Amir Hossein Kargaran, Sascha Rothe, Fran c ois Yvon, and Hinrich Sch \"u tze. On relation-specific neurons in large language models. In Proceedings of the 2025 Conference on Empirical Methods in Natural Language Processing, pp.\ 992--1022, 2025
work page 2025
-
[10]
Pointer sentinel mixture models
Stephen Merity, Caiming Xiong, James Bradbury, and Richard Socher. Pointer sentinel mixture models. In ICLR, 2017
work page 2017
-
[11]
Learning to reason in 13 parameters
John X Morris, Niloofar Mireshghallah, Mark Ibrahim, and Saeed Mahloujifar. Learning to reason in 13 parameters. arXiv preprint arXiv:2602.04118, 2026
-
[12]
WinoGrande : An adversarial winograd schema challenge at scale
Keisuke Sakaguchi, Ronan Le Bras, Chandra Bhagavatula, and Yejin Choi. WinoGrande : An adversarial winograd schema challenge at scale. In AAAI, 2020
work page 2020
-
[13]
Maximum-margin matrix factorization
Nathan Srebro, Jason Rennie, and Tommi Jaakkola. Maximum-margin matrix factorization. In Advances in Neural Information Processing Systems, volume 17, 2004
work page 2004
-
[14]
Massive activations in large language models
Mingjie Sun, Xinlei Chen, J Zico Kolter, and Zhuang Liu. Massive activations in large language models. In First Conference on Language Modeling, 2024
work page 2024
-
[15]
The Super Weight in Large Language Models
Mengxia Yu, De Wang, Qi Shan, Colorado J Reed, and Alvin Wan. The super weight in large language models. arXiv preprint arXiv:2411.07191, 2025
work page internal anchor Pith review Pith/arXiv arXiv 2025
-
[16]
BitFit : Simple parameter-efficient fine-tuning for transformer-based masked language-models
Elad Ben Zaken, Yoav Goldberg, and Shauli Ravfogel. BitFit : Simple parameter-efficient fine-tuning for transformer-based masked language-models. In Proceedings of the 60th Annual Meeting of the Association for Computational Linguistics (Volume 2: Short Papers), pp.\ 1--9, 2022
work page 2022
-
[17]
Adaptive budget allocation for parameter-efficient fine-tuning
Qingru Zhang, Minshuo Chen, Alexander Bukharin, Pengcheng He, Yu Cheng, Weizhu Chen, and Tuo Zhao. Adaptive budget allocation for parameter-efficient fine-tuning. In The Eleventh International Conference on Learning Representations, 2023
work page 2023
discussion (0)
Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.