REVIEW 2 major objections 1 minor 7 references
Reviewed by Pith at T0; open to challenge.
T0 means a machine referee read the full paper against a public rubric. The mark states how deep the mechanical check went, never who wrote it. the ladder, T0–T4 →
T0 review · grok-4.3
Sparse Memory Finetuning adapts models by updating only the most-read memory rows per batch, limiting drift on general capabilities.
2026-06-30 23:51 UTC pith:RWT45WHE
load-bearing objection SMF gives a modest MedMCQA gain with less drift on WikiText and TriviaQA than LoRA or full tuning, but the two probes are too narrow to back the low-forgetting claim. the 2 major comments →
Sparse Memory Finetuning as a Low-Forgetting Alternative to LoRA and Full Finetuning
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
Core claim
Sparse Memory Finetuning adds key-value memory layers to the model and updates only the small set of memory rows that the current batch reads most heavily. On MedMCQA this produces a 2.5 percentage point improvement while holding both forgetting probes within roughly 1 point of the base model, whereas LoRA and full finetuning achieve larger gains accompanied by clear drift on both probes.
What carries the argument
Key-value memory layers updated sparsely per batch via row selection by KL-divergence or TF-IDF, restricting changes to the rows read most heavily.
Load-bearing premise
The chosen forgetting probes together with the row-selection heuristics supply a sufficient and unbiased measure of preserved general capabilities after adaptation.
What would settle it
An experiment on a new task or with additional forgetting measures that finds SMF producing comparable or larger drift than LoRA while still improving on the target task would falsify the central claim.
If this is right
- SMF can serve as a lower-forgetting alternative when adaptation must preserve performance on general text and knowledge probes.
- KL-divergence and TF-IDF row selection produce different balances between the two forgetting metrics.
- Larger gains on the target task come with greater drift under both LoRA and full finetuning.
- The method achieves its results by limiting updates to a small active subset of memory rows each step.
Where Pith is reading between the lines
- The approach may apply to other domain shifts where retention of broad pretraining knowledge is a priority.
- The overhead of the added memory layers could be tested on larger base models to check whether the forgetting benefit scales.
- SMF might be combined with existing parameter-efficient methods to further tune the accuracy-forgetting trade-off.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The manuscript proposes Sparse Memory Finetuning (SMF), which augments a pretrained LM with key-value memory layers and updates only the most heavily accessed rows per batch during adaptation. It re-implements SMF on Qwen-2.5-0.5B-Instruct and compares it to LoRA and full finetuning on the MedMCQA 4-choice medical QA task, using WikiText perplexity and TriviaQA accuracy as forgetting probes. The central empirical claim is that SMF yields a +2.5 pp gain on MedMCQA while keeping both probes within ~1 point of the base model, whereas the baselines achieve larger task gains at the cost of clear drift; two row-selection heuristics (KL-divergence and TF-IDF) are also contrasted.
Significance. If the results hold under properly documented conditions, SMF would offer a concrete, memory-augmented alternative to standard parameter-efficient and full finetuning methods that demonstrably reduces measured forgetting on the chosen probes. This could be practically relevant for domain adaptation tasks where retaining broad capabilities matters, and the explicit comparison of row-selection rules provides a starting point for further tuning of the method.
major comments (2)
- [Abstract] Abstract: the reported numerical improvements (+2.5 pp on MedMCQA, drift bounded within ~1 point on the probes) are stated without any accompanying experimental protocol, baseline implementation details, hyperparameter settings, number of runs, or statistical tests. This absence is load-bearing because the central claim is an empirical comparison whose reliability cannot be assessed from the given information.
- [Forgetting probes and row-selection] Forgetting probes and row-selection section: the claim that SMF is a low-forgetting alternative depends on WikiText perplexity and TriviaQA accuracy being adequate, unbiased proxies for retained general capabilities after MedMCQA adaptation. No justification, ablation against other metrics (e.g., reasoning or non-medical recall tasks), or sensitivity analysis is provided, so the sufficiency of these two probes for the distribution shift remains untested.
minor comments (1)
- [Method] The description of how KL-divergence or TF-IDF is applied to select memory rows would benefit from an explicit equation or pseudocode to clarify the exact computation and any hyperparameters involved.
Simulated Author's Rebuttal
We thank the referee for the detailed feedback on the empirical presentation and evaluation methodology. We address each major comment below, indicating planned revisions where appropriate.
read point-by-point responses
-
Referee: [Abstract] Abstract: the reported numerical improvements (+2.5 pp on MedMCQA, drift bounded within ~1 point on the probes) are stated without any accompanying experimental protocol, baseline implementation details, hyperparameter settings, number of runs, or statistical tests. This absence is load-bearing because the central claim is an empirical comparison whose reliability cannot be assessed from the given information.
Authors: We agree the abstract is too terse for a central empirical claim. In revision we will expand it to name the base model (Qwen-2.5-0.5B-Instruct), the adaptation task (MedMCQA), the two baselines, and the two forgetting probes, while directing readers to the experimental section for hyperparameters and implementation. The current results are from single runs; we will add an explicit limitation note on the absence of multiple seeds or statistical tests rather than fabricate new runs. revision: partial
-
Referee: [Forgetting probes and row-selection] Forgetting probes and row-selection section: the claim that SMF is a low-forgetting alternative depends on WikiText perplexity and TriviaQA accuracy being adequate, unbiased proxies for retained general capabilities after MedMCQA adaptation. No justification, ablation against other metrics (e.g., reasoning or non-medical recall tasks), or sensitivity analysis is provided, so the sufficiency of these two probes for the distribution shift remains untested.
Authors: We accept that the manuscript provides no explicit rationale for the probe selection. We will insert a short paragraph in the relevant section citing prior forgetting literature that uses language-modeling perplexity and factual-recall accuracy as standard proxies for general capability retention under domain shift. We will also note the limitation that no additional reasoning or non-medical tasks were evaluated. No new experiments are feasible within the current revision timeline, but the added discussion directly addresses the concern. revision: yes
Circularity Check
No derivation chain present; purely empirical comparison
full rationale
The paper reports an empirical re-implementation and comparison of Sparse Memory Finetuning (SMF) versus LoRA and full finetuning on the MedMCQA task, measuring task gains against WikiText perplexity and TriviaQA accuracy as forgetting probes. No equations, derivations, fitted parameters renamed as predictions, or load-bearing self-citations appear in the described content. All results are direct experimental outcomes rather than reductions of any claimed first-principles chain to its own inputs, satisfying the default expectation of no significant circularity.
Axiom & Free-Parameter Ledger
read the original abstract
Adapting a pretrained language model to a new task often hurts the general capabilities it already had, a problem known as catastrophic forgetting. Sparse Memory Finetuning (SMF) tries to avoid this by adding key-value memory layers to the model and, on each training step, updating only the small set of memory rows that the current batch reads most heavily. We re-implement SMF on Qwen-2.5-0.5B-Instruct and compare it with LoRA and full finetuning on MedMCQA, a 4-choice medical exam task, using WikiText perplexity and TriviaQA accuracy as forgetting probes. SMF improves MedMCQA by 2.5 percentage points while keeping both forgetting probes within roughly 1 point of the base model, whereas LoRA and full finetuning achieve larger gains but with clear drift on both. We also compare two row-selection rules (KL-divergence and TF-IDF), which balance the two forgetting metrics differently.
Figures
Reference graph
Works this paper leans on
-
[1]
Berges, V .-P., O˘guz, B., Haziza, D., Yih, W.-t., Zettlemoyer, L., and Ghosh, G. Memory layers at scale, 2024. URL https://arxiv.org/abs/2412.09764
work page Pith review arXiv 2024
-
[2]
J., Shen, Y ., Wallis, P., Allen-Zhu, Z., Li, Y ., Wang, S., Wang, L., and Chen, W
Hu, E. J., Shen, Y ., Wallis, P., Allen-Zhu, Z., Li, Y ., Wang, S., Wang, L., and Chen, W. LoRA: Low-rank adaptation of large language models. InInternational Conference on Learning Representations, 2022
work page 2022
-
[3]
Joshi, M., Choi, E., Weld, D. S., and Zettlemoyer, L. Trivi- aQA: A large scale distantly supervised challenge dataset for reading comprehension. InProceedings of the 55th Annual Meeting of the Association for Computational Linguistics, 2017. K¨opf, A., Kilcher, Y ., von R ¨utte, D., et al. OpenAssis- tant conversations – democratizing large language mode...
work page 2017
-
[4]
Large memory layers with product keys
Lample, G., Sablayrolles, A., Ranzato, M., Denoyer, L., and J´egou, H. Large memory layers with product keys. InAdvances in Neural Information Processing Systems, 2019
work page 2019
-
[5]
Lin, J. et al. Continual learning via sparse memory finetun- ing, 2025. URL https://arxiv.org/abs/2510. 15103
work page 2025
-
[6]
Pointer sentinel mixture models
Merity, S., Xiong, C., Bradbury, J., and Socher, R. Pointer sentinel mixture models. InInternational Conference on Learning Representations, 2017
work page 2017
-
[7]
Pal, A., Umapathi, L. K., and Sankarasubbu, M. MedM- CQA: A large-scale multi-subject multi-choice dataset for medical domain question answering. InProceedings of the Conference on Health, Inference, and Learning, pp. 248–260. PMLR, 2022. Qwen Team. Qwen2.5 technical report, 2024. 5 Sparse Memory Finetuning as a Low-Forgetting Alternative to LoRA and Full...
work page 2022
discussion (0)
Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.