REVIEW 6 major objections 5 minor 16 references
Slimming Down LLMs Without Losing Their Minds
T0 review · 6 major / 5 minor · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read QLoRA fine-tuning on generic instruction data nearly erases a small LLM's mathematical reasoning, cuts its domain knowledge, and leaves commonsense intact.
desk verdict Small replication study with a plausible forgetting result, sunk by an unverifiable evaluation and an abstract that contradicts its own table. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The machinery is QLoRA's low-rank update: the base weight matrix $W$ is frozen (and 4-bit quantized), and training only touches two low-rank matrices $A \in R^{d \times r}$ and $B \in R^{r \times d}$, so the forward pass becomes $y = (W + AB)x$. This is the intervention whose effects the paper measures. The quantitative claims ride on three operationalized metrics: the Forgetting Rate $FR = (1 - A_{\mathrm{FT}}^{\mathrm{flex}}/A_{\mathrm{base}}^{\mathrm{flex}}) \times 100$, the Knowledge Loss $\Delta K = A_{\mathrm{base}} - A_{\mathrm{FT}} \pm \sqrt{CI_{\mathrm{base}}^2 + CI_{\mathrm{FT}}^2}$, and the Ability Augmentation $\Delta A = A_{\mathrm{FT}}^{\mathrm{norm}} - A_{\mathrm{base}}^{\mathrm{norm}}$. Because so few parameters are updated, the paper's argument is that any capability collapse must come from the interaction between the Alpaca fine-tuning data and the existing weights, not from wholesale rewriting of the model.
What would settle it
Re-run the paper's fine-tuning and evaluation pipeline and inspect the GSM8K outputs: if flexible extraction changes no answers on the base model (strict equals flexible accuracy), the parser is inert and the forgetting rate must be recalculated. Alternatively, check whether the fine-tuned model's 3.71% flexible accuracy comes from genuinely wrong arithmetic or from answers the extraction step fails to parse.
Extended reading notes
Core claim
On the paper's own terms, the discovery is that QLoRA fine-tuning of Llama 3.2 1B on 2,000 Alpaca instruction samples causes catastrophic forgetting in mathematical reasoning and substantial domain-knowledge loss while leaving commonsense reasoning nearly untouched. GSM8K flexible accuracy drops from 33.51% to 3.71%, producing a forgetting rate of 88.92%, and strict accuracy drops from 33.51% to 3.11%. MMLU computer-science accuracy falls from 47% to 34%, a 13.00-point knowledge loss that the paper calls significant but partial. In contrast, HellaSwag normalized accuracy moves from 60.77% to 61.20%, a change of +0.43%. The paper also reports that TinyLlama 1.1B, fine-tuned on 50,000 Alpaca samples, scores only 27% on MMLU-CS, below the 34% of fine-tuned Llama 3.2 despite twenty-five times more training data, and interprets the overall pattern as evidence of representational competition in a fixed parameter budget.
Load-bearing premise
The headline numbers are only trustworthy if the evaluation harness and its answer-extraction and normalization rules measure the models correctly; if the GSM8K extraction rule is broken, the 88.92% forgetting rate could be an artifact.
Editorial extensions
If this is right
- Fine-tuning a small LLM on generic instruction data without task-specific examples can erase a specialized capability almost entirely, even when only a low-rank adapter is trained.
- Benchmarking a fine-tuned model only on the target task will miss these losses; out-of-domain evaluations on math and knowledge are needed to detect forgetting.
- A stronger base architecture can beat a much larger fine-tuning dataset: Llama 3.2 1B's 34% MMLU-CS with 2,000 samples exceeds TinyLlama's 27% with 50,000 samples.
- Commonsense reasoning appears more robust to this kind of instruction fine-tuning than mathematical reasoning or factual knowledge, so capability retention is domain-dependent.
- The reported 88.92% forgetting rate gives a concrete, quantitative case of catastrophic forgetting in parameter-efficient fine-tuning, not just in full fine-tuning.
Reading between the lines
- A natural extension the paper does not run is varying rank, quantization, and dataset mixture; mapping exactly when the GSM8K forgetting rate crosses the 50% threshold would give practitioners a rule of thumb.
- The representational-competition explanation predicts that adding even a small block of math word problems to the Alpaca mix should cut the forgetting rate sharply; that is a cheap experiment to run.
- Probing the adapter weights to see whether they overwrite directions in the attention projections that matter for arithmetic would test whether the observed forgetting is a parameter-interference effect.
- Because architecture and data quantity are confounded in the TinyLlama comparison, a clean test would fix one model and vary only the fine-tuning dataset size to isolate the data effect.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper reports an empirical study of QLoRA fine-tuning on two small language models, Llama 3.2 1B and TinyLlama 1.1B, using the Alpaca instruction-following dataset. It evaluates the base and fine-tuned models on HellaSwag, GSM8K, and MMLU-CS, and reports three headline findings: an 88.92% Forgetting Rate on GSM8K mathematical reasoning for Llama 3.2 after 2,000 Alpaca samples, a 13.00% absolute loss on MMLU-CS, and a negligible +0.43% change on HellaSwag normalized accuracy. The paper also claims that LoRA-based methods improve task-specific performance and that the results provide theoretical insight into parameter-efficient fine-tuning.
Significance. If the empirical findings were reliable, the paper would provide a useful cautionary result about generic instruction fine-tuning destroying specialized capabilities, and it would add to the literature on catastrophic forgetting in parameter-efficient adaptation. The choice of two comparable 1B models and the use of standard public benchmarks are strengths. However, the manuscript's own data contradict its abstract claim of improved task-specific performance, and the central quantitative claims rest on an evaluation protocol that is not described, whose stated metric formulas are inconsistent with the cited harness, and for which no code, prompts, or hyperparameters are provided. The theoretical contribution is limited to standard LoRA definitions and does not support the paper's stated objective. As presented, the results cannot be independently checked or interpreted, so the significance of the reported findings is currently unassessable.
major comments (6)
- [§2.4, Table 2] The paper's headline result, the 88.92% GSM8K Forgetting Rate, cannot be validated from the information given. The evaluation is attributed to lm-evaluation-harness, but the paper reports no prompt templates, few-shot examples, chat template, generation parameters, or answer-extraction rules. The metric formula in §2.4 defines flexible accuracy as the fraction of outputs with |p_i - t_i| < epsilon, which is a numeric-tolerance comparison and does not match lm-evaluation-harness's flexible-extract matching. Moreover, Table 2 reports identical base strict and flexible accuracies (33.51%), which suggests the flexible extractor is not actually recovering free-form answers. Because the entire forgetting claim depends on these numbers, the central result is not established.
- [§2.4, HellaSwag metric] The HellaSwag metric is mischaracterized. The paper defines normalized accuracy as string equality after lowercasing and removing punctuation, but lm-evaluation-harness's HellaSwag normalized accuracy compares per-token log-likelihoods normalized by sequence length. The reported '+0.43% Ability Augmentation' is therefore not the metric the authors claim to have computed. If a custom normalization was used, it must be described precisely and the associated code provided; otherwise the conclusion that commonsense reasoning is preserved is unsupported.
- [Abstract and §3] The abstract states that 'LoRA-based methods effectively improve task-specific performance,' but Table 2 shows no improvement on any of the three reported tasks for the fine-tuned Llama 3.2 model: GSM8K falls from 33.51% to 3.71%, MMLU-CS falls from 47% to 34%, and HellaSwag changes by only +0.43%, which is within the confidence interval. TinyLlama has no base-model baseline in the table, so no task-specific improvement can be claimed for it either. This claim is contradicted by the paper's own data and should be removed or substantially reframed.
- [§2.3, Table 1, Eq. (1.2)–(1.3)] The training configuration is underreported to the point that the experiments are not reproducible. The paper does not list the LoRA rank r, scaling alpha, learning rate, number of epochs or steps, batch size, target modules, quantization settings, or random seed. The mathematical formulation in §1.2.2 and §2.1.1 is only the standard LoRA definition, and no analysis links these hyperparameters to the observed results. Consequently, the stated goal of providing 'theoretical insights into parameter-efficient mechanisms' is not achieved by the current text.
- [§3, statistical significance] The paper reports 'p < 0.05 via paired t-test' without any details of the test: no t-statistic, degrees of freedom, number of paired items, or basis for pairing. The reported confidence intervals are consistent with binomial standard errors, but no formula or sample-size information is given. This makes it impossible to assess the statistical strength of the claimed differences, particularly for the MMLU-CS result where the 95% intervals of base and fine-tuned models do not overlap but the stated 'Knowledge Loss' includes a propagated uncertainty of ±6.93%.
- [Footnote 7 and availability] The paper's footnote 7 reads 'Implementation Details:' and then provides no implementation details. No code, configuration files, evaluation scripts, or model outputs are provided. For an empirical study whose central claims depend on benchmark evaluation, this omission is a load-bearing reproducibility failure. The authors should provide the exact evaluation commands, prompts, and a link to the code before the claims can be taken seriously.
minor comments (5)
- [Footnote 4] The aside about Stata's default output precision is irrelevant to the paper's discussion of floating-point precision and should be removed.
- [Throughout] There are numerous typos and grammatical errors, including 'tinnning', 'mdoel', 'downloaed', and 'lowerer'. The manuscript would benefit from careful proofreading.
- [References] Reference [14] is cited for the Transformer architecture but is titled 'Attention is all you need in speech separation' and does not appear to be the original Transformer paper; the standard Vaswani et al. reference should be used instead.
- [§2.3] The text inconsistently refers to 'Llama 1.1 1B' when it means TinyLlama 1.1B, and the model-selection justification contains redundant and somewhat contradictory claims about 'performance ceiling' and 'efficiency frontier'; these should be clarified.
- [Table 2 footnote 4] The table note '- indicates metric not applicable/comparable due to architectural differences' is unclear because the dash is also used for the missing TinyLlama baseline; please define exactly which entries are not applicable and why.
Circularity Check
No circularity: the paper's claims are empirical benchmark measurements, not predictions derived from fitted inputs or self-citations.
full rationale
The paper makes no theoretical derivation that could reduce to its inputs. Its central claims—catastrophic forgetting in GSM8K (33.51% to 3.71%, FR=88.92%), preserved HellaSwag accuracy, and MMLU-CS degradation—are computed by evaluating base and fine-tuned checkpoints against fixed external benchmarks using lm-evaluation-harness. The metric formulas in Section 2.4 (Anorm, Aflex, strict/flexible accuracy, Forgetting Rate, Knowledge Loss) are measurement definitions, not fitted parameters; no quantity is fit to a subset of the benchmark results and then re-predicted. The 88.92% Forgetting Rate is arithmetic from two independently measured accuracies. All citations are to external methodology, datasets, and frameworks (LoRA, QLoRA, Alpaca, lm-evaluation-harness); none encodes the paper's conclusion, and the paper contains no self-citations or imported uniqueness theorems. The absent 'Implementation Details' and the potential prompt/extraction mismatch flagged by the skeptic are reproducibility and validity concerns, not circularity, because the evaluation protocol is not constructed from the conclusion it is used to support. No circular step can be exhibited from the paper's own equations or citation chain.
Assumptions & free parameters
free parameters (5)
- LoRA rank r =
not reported
- LoRA scaling alpha =
not reported
- Learning rate =
not reported
- Number of training epochs (or steps) =
not reported
- GSM8K tolerance threshold epsilon =
0.01
assumptions (3)
- domain assumption lm-evaluation-harness computes benchmark accuracies correctly, and the paper's metric formulas (flexible accuracy, normalization, knowledge loss) are implemented as intended.
- domain assumption The Alpaca dataset is a representative instruction-tuning corpus for testing parameter-efficient fine-tuning.
- domain assumption The QLoRA implementation in Unsloth preserves the pretrained weights and correctly merges adapters after training.
Cite this review
Pith. "Pith review of Slimming Down LLMs Without Losing Their Minds." pith.science (2026). https://pith.science/paper/7T2WGRTD
@misc{pith2026250610885,
author = {Pith},
title = {Pith review of: Slimming Down LLMs Without Losing Their Minds},
year = {2026},
howpublished = {\url{https://pith.science/paper/7T2WGRTD}},
note = {Machine review of arXiv:2506.10885}
}
read the original abstract
This paper investigates and validates the impact of fine-tuning on large language model performance, focusing on parameter-efficient methods (LoRA and QLoRA). We evaluate model capabilities across three key domains: (1) commonsense reasoning (HellaSwag), (2) mathematical reasoning (GSM8K), and (3) multi-domain knowledge (MMLU-CS). Our findings demonstrate that: (1) LoRA-based methods effectively improve task-specific performance while maintaining computational efficiency, and (2) performance strongly depends on alignment between fine-tuning dataset and benchmark tasks. The study provides both theoretical insights into parameter-efficient mechanisms and practical guidance for developers implementing efficient LLM adaptation with limited resources.
Figures
Reference graph
Works this paper leans on
-
[1]
A. Aghajanyan, L. Zettlemoyer, and S. Gupta, Intrinsic dimensionality explains the effectiveness of language model fine-tuning, 2020, http://dx.doi.org/10.48550/arxiv.2012.13255
-
[2]
K. Cobbe, V . Kosaraju, M. Bavarian, M. Chen, H. Jun, L. Kaiser, M. Plappert, J. Tworek, J. Hilton, R. Nakano, C. Hesse, and J. Schulman, Training verifiers to solve math word problems, 2021, http://dx.doi.org/10.48550/arxiv.2110.14168
-
[3]
T. Dettmers, M. Lewis, S. Shleifer, and L. Zettlemoyer, 8-bit optimizers via block-wise quantization, 2021, http://dx.doi.org/10.48550/arxiv.2110.02861
-
[4]
T. Dettmers, A. Pagnoni, A. Holtzman, and L. Zettlemoyer, QLoRA: Efficient Finetuning of Quantized LLMs, 2023, http://dx.doi.org/10.48550/arxiv.2305.14314
-
[5]
T. Dettmers and L. Zettlemoyer, The case for 4-bit precision: k-bit Inference Scaling Laws, 2022, http://dx.doi.org/10.48550/arxiv.2212.09720
-
[6]
Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova, Bert: Pre-training of deep bidirectional transformers for language understanding, arXiv preprint arXiv:1810.04805 , 2018, http://dx.doi.org/10.48550/arXiv.1810.04805. 10
-
[7]
Leo Gao, Jonathan Tow, Baber Abbasi, Stella Biderman, Sid Black, Anthony DiPofi, Charles Foster, Laurence Golding, Jeffrey Hsu, Alain Le Noac’h, Haonan Li, Kyle McDonell, Niklas Muennighoff, Chris Ociepa, Jason Phang, Laria Reynolds, Hailey Schoelkopf, Aviya Skowron, Lintang Sutawika, Eric Tang, Anish Thite, Ben Wang, Kevin Wang, and Andy Zou, A framework...
arXiv 2024
-
[8]
J. He, C. Zhou, X. Ma, T. Berg-Kirkpatrick, and G. Neubig, Towards a unified view of parameter-efficient transfer learning, 2021, http://dx.doi.org/10.48550/arxiv.2110.04366
Show all 16 references
- [9]
- [10]
- [11]
- [12]
-
[13]
S. J. Pan and Q. Yang, A survey on transfer learning, IEEE Transactions on Knowledge and Data Engineering, 22(10):1345–1359, 2010, http://dx.doi.org/10.1109/TKDE.2009.191
2010 doi
-
[14]
Subakan, M
C. Subakan, M. Ravanelli, S. Cornell, M. Bronzi, and J. Zhong, Attention is all you need in speech separation, pp. 21–25, 2021, http://dx.doi.org/10.1109/ICASSP39728.2021.9413901
2021
- [15]
- [16]
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.