REVIEW 4 major objections 6 minor 41 references
Standard LLM unlearning practice—single-type neighbor sets and 1:1 forget-retain pairing—is suboptimal; entity-aligned MELU sampling is more stable and effective, the paper argues.
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 →
Entity-aligned sampling (MELU) is stabler than 1:1 or cyclic retain-set sampling for LLM unlearning, but the paper's diverse-neighbor claim is contradicted by its own Balanced results.
T0 review reviewed 2026-08-05 challenge →
load-bearing objection A useful, honestly reported empirical sweep of retain-set sampling for LLM unlearning, but two of the three headline 'best practices' are not supported by the paper's own data: the 1:1 inefficiency claim is confounded by an epoch-budget mismatch, and the diverse-neighbor claim contradicts the Balanced result. the 4 major comments →
Standard vs. Modular Sampling: Best Practices for Reliable LLM Unlearning
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
Core claim
On the paper's own terms, the discovery is that retain-set composition and forget-retain pairing are first-order levers in LLM unlearning, not implementation details. Concretely: (1) a single neighbor set is suboptimal—direct neighbors favor forget efficacy for gradient-based methods, indirect neighbors favor model utility, and the balanced mix behaves differently per algorithm; (2) the standard 1:1 sampling (sequential and random) leaves forget efficacy near 0.35 across all three algorithms, far below the 0.63–0.97 achieved by cyclic and MELU; (3) MELU, which pairs each forget entity only with its own direct and indirect retain samples plus randomly assigned general-knowledge samples, is mo
What carries the argument
Modular Entity-Level Unlearning (MELU), a sampling strategy that pairs each forget target only with its own retain samples—direct and indirect neighbors of that entity, plus randomly assigned general-knowledge samples—instead of cycling forget samples against the whole retain pool. It carries the paper's main positive claim. The paper attributes MELU's stability to a more consistent learning signal: low-variance gradients from related forget-retain pairs, versus the high-variance gradients of cyclic sampling. The neighbor-set taxonomy (direct, indirect, syntactic) is the second load-bearing structure, organizing the data-practice comparison.
Load-bearing premise
The indirect neighbor set and test set rest on the assumption that LLaMA 3.3 70B and LLaMA 3.1 8B, being the same model family, share similar pre-training knowledge; if that fails, the retain data and evaluation are biased toward the target model and the forget-efficacy and model-utility comparisons do not measure what they claim.
What would settle it
Regenerate the indirect-neighbor retain set and the test set with a model outside the LLaMA family (or with the target model itself) and rerun the seven settings: if MELU's 12-point DPO forget-efficacy advantage over cyclic disappears, or the single-neighbor rankings change, the results hinge on the same-family data-generation assumption. A cheaper check is to run cyclic and MELU under DPO across several random seeds and verify that the per-target FE≥0.9 count (3 vs 1) and the roughly 0.82 vs 0.70 forget-efficacy gap replicate; the paper's own note that 1:1 random reaches 0.79 forget efficacy
If this is right
- Unlearning benchmarks should stop defaulting to a single neighbor set; the paper shows direct-only and indirect-only retain sets push the forget-efficacy/model-utility trade-off in opposite directions.
- Practitioners should treat 1:1 forget-retain sampling as a known-weak baseline: it under-uses the retain set and leaves forget efficacy near pre-unlearning levels for GD, DPO, and NPO alike.
- MELU is a drop-in replacement for cyclic sampling that requires no new algorithm or compute, and it improves per-target stability and forget efficacy, especially with preference-based methods.
- Per-entity evaluation matters: targets with high memorization scores resist all settings, so aggregate forget-efficacy/model-utility numbers alone can hide where unlearning fails.
- With proper sampling (cyclic or MELU), general model utility stays stable on MMLU, whereas changes in data composition produce inconsistent MMLU shifts.
Where Pith is reading between the lines
- If MELU's advantage really comes from lower-variance gradients, the same entity-aligned principle should transfer to sequential unlearning and to other model families; a direct test is measuring per-batch gradient variance under cyclic versus MELU.
- The 1:1 result may be a repetition or epoch effect rather than an inherent ceiling: the paper notes that 1:1 random reaches 0.79 forget efficacy at 100 epochs, so the practical claim is that 1:1 is inefficient at standard epoch budgets, not that it cannot work.
- Because the indirect neighbors were generated under the same-family knowledge assumption, the indirect-versus-direct rankings are the least portable result; regenerating the neighbor and test data with a cross-family generator is the natural external-validity check.
- Selecting only five indirect entities per target leaves the balanced setting fairly thin; knowledge-graph-defined connections, as the authors themselves suggest, could change the balanced-set results.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper investigates two aspects of LLM unlearning practice: retain-set composition (direct, indirect, and balanced neighbor sets) and sampling strategies (1:1 sequential/random, cyclic, and the proposed Modular Entity-Level Unlearning, MELU). Using an extension of the WPU dataset with 20 forget entities, the authors add an indirect-neighbor set and a test set generated with LLaMA 3.3 70B, then evaluate Gradient Difference, DPO, and NPO on LLaMA 3.1 8B. The paper claims three best practices: (1) diverse neighbor sets balance forget efficacy (FE) and model utility (MU-T); (2) 1:1 sampling is inefficient and yields poor results; (3) MELU provides more stable and effective unlearning than cyclic sampling. The contributions are a systematic comparison of these practices and an open-source implementation.
Significance. If the claims held, the paper would give practitioners concrete, low-cost guidance on retain-set design and sampling, an area where the field currently relies on heuristics. The manuscript is transparent: code is released, the data-construction pipeline is described in detail, per-entity results are reported, and limitations are stated explicitly. However, the load-bearing claims overreach the evidence. The 1:1 versus cyclic/MELU comparison is confounded by an 18x difference in retain-set exposures, and the Balanced setting does not actually support the 'diverse neighbor sets' claim—the paper's own results contradict it. Without repeated seeds or significance tests, the stability claims are not established. The work is a useful starting point but currently reads as an exploratory study rather than a validated set of best practices.
major comments (4)
- [§4.2, §5.2, footnote 6] The claim that 'standard 1:1 sampling methods are inefficient and yield poor results' (abstract; §1) is not supported because the comparison is not controlled for total retain updates. In §4.2, 1:1 seq/random draw |Dr|=|Df|=98 retain samples per epoch, while Cyclic and MELU use the full 1801-sample retain pool. With 4 epochs, 1:1 sees ~392 retain exposures versus ~7204 for Cyclic/MELU—an ~18x difference. Footnote 6 reports that 1:1 random reaches FE 0.79 and MU-T 0.78 at epoch 100, close to Cyclic/MELU at 4 epochs. The inefficiency conclusion is therefore an artifact of the fixed epoch budget, not a property of the sampling scheme. To support claim (2), the authors need either equal retain-exposure comparisons or a principled compute/epoch budget with ablations over epochs.
- [§5.1, Table 1, §6] The conclusion 'By including a diverse range of neighbors - we can improve the balance between forget efficacy and model utility' (§6) is contradicted by Table 1. For GD, Balanced FE 0.97/MU-T 0.55 versus Direct 0.96/0.34 and Indirect 0.89/0.65: Balanced improves FE over Indirect but degrades MU-T relative to Indirect; it does not dominate. For DPO, Balanced FE 0.57/MU-T 0.79 versus Direct 0.57/0.76 and Indirect 0.71/0.77: Balanced does not improve FE over Direct and has lower FE than Indirect. For NPO, Balanced 0.61/0.74 is not Pareto-better than Indirect 0.60/0.78. Section 5.1 itself states 'Balanced fails to achieve better FE and MU-T.' The claim that diverse neighbor sets balance the trade-off needs a defined aggregation or Pareto criterion, or the conclusion must be revised.
- [§4.2, §5.2, Appendix A.4] All results are based on a single run per configuration; no seeds, error bars, or significance tests are reported. This is especially load-bearing for the 'stability' claims about MELU. For example, in NPO the difference between Cyclic FE 0.63/MU-T 0.78 and MELU 0.65/0.79 is within likely run-to-run variation for an 8B model with LoRA. The per-target 'improvements' (e.g., Amy Clampitt FE +20%) are also single draws. Without variance estimates, the paper cannot support the 'more stable and effective' wording in claim (3). At minimum, the authors should report repeated seeds and dispersion; ideally, a paired test across seeds for the per-target comparisons.
- [§4.1, §7 Limitations] The indirect-neighbor set and the test set are generated with LLaMA 3.3 70B, and the unlearning target is LLaMA 3.1 8B. The paper assumes 'models of the same family would likely share similar pre-training knowledge.' This is acknowledged as a limitation, but it is not merely a generalizability caveat: it affects the validity of the Nind retain set and MU-T evaluation for every comparison. If the 3.3-generation data reflects family-shared knowledge, then the retain/test sets are not independent probes of unlearning quality. The authors should test the assumption explicitly (e.g., compare with a non-family model or a human-authored subset) or at least re-frame all conclusions as family-specific.
minor comments (6)
- [Figure 5] Typo: 'Siene' should be 'Seine.' Also, the figure caption does not explain what 'iconic tower' refers to; consider clarifying.
- [Table 1] The table lacks clear grouping and a caption describing how FE and MU-T are computed. The row labels 'GA' and 'NPO' appear without distinguishing the unlearning setting from the data-practice rows.
- [§5.2] The sentence 'we already achieve better stability (FE and MU-T) with cyclic and MELU with the same number of epochs' is correct but does not address the confound raised in footnote 6. Please clarify that the comparison is under a fixed epoch budget and state whether that budget is meant to be the intended practical regime.
- [§2.2] The description of syntactic similarity uses an example 'When was Benedetto Varchi born?' and 'When was Donald Trump born?' but the paper later notes it could not build a full Ns set. This should be cross-referenced so the reader does not assume Ns was included in the experiments.
- [§6] The statement 'we couldn't answer why these setups provides more stability' is an honest acknowledgment, but it contradicts the causal explanation in §5.2 ('high-variance gradients... lower variance per batch'). Please either provide evidence for the variance explanation or label it as a hypothesis.
- [Appendix A.4] PPL-F and PPL-T columns contain values like '3.09 × 10^82' for GD. These are not meaningful for readers; consider clipping or reporting in log space.
Circularity Check
No significant circularity: the paper is an empirical comparison with acknowledged limitations, not a derivation that reduces to its inputs.
full rationale
The paper does not present a formal derivation or a fitted-parameter-then-prediction chain; it is an empirical study of sampling practices. The main claims—that diverse neighbor sets help, that 1:1 sampling is inefficient at fixed epoch budgets, and that MELU is more stable—are supported by experiments rather than by definition. The 1:1 sampling result is confounded by the fact that 1:1 uses |Dr|=|Df|=98 retain samples per epoch while Cyclic uses all 1801 retain samples, and the paper's own footnote 6 shows 1:1 catches up given 100 epochs; however, this is an experimental design/validity concern, not a circular reduction: the outcome is not equivalent to the input definition, and the paper explicitly qualifies its claim to 'the same number of epochs.' The sister-model assumption (LLaMA 3.3 70B generating Nind and test data for a LLaMA 3.1 8B target) is a dataset-validity limitation that the authors acknowledge in Section 7; it does not make the evaluation circular because the unlearning method is not defined in terms of that data. There are no load-bearing self-citations: the authors cite prior benchmarks and methods but do not rely on their own prior work to justify the central premise. No ansatz is smuggled via citation, and no known result is merely renamed. The paper's internal inconsistencies and confounds are correctness risks, but they do not constitute circularity under the stated criteria.
Axiom & Free-Parameter Ledger
free parameters (4)
- unlearning_epochs =
4
- balanced neighbor ratio =
1:1 direct-to-indirect per entity
- LoRA rank/alpha for unlearning =
rank=8, alpha=16
- beta, alpha, gamma in DPO/NPO =
beta=0.1, alpha=1, gamma=1
axioms (4)
- domain assumption Unlearning objective L = -Lf + lambda Lr (Section 2.1) captures the intended tradeoff.
- domain assumption LLaMA 3.3 70B shares pre-training knowledge with LLaMA 3.1 8B (Section 4.1).
- ad hoc to paper Edit distance at 40% similarity indicates syntactic neighbor quality (Section 4.1).
- domain assumption WPU forget_20 subset is representative of unlearning difficulty (Section 4.1).
Cite this review
Pith. "Pith review of Standard vs. Modular Sampling: Best Practices for Reliable LLM Unlearning." pith.science (2026). https://pith.science/paper/2ZIIXDED
@misc{pith2026250905316,
author = {Pith},
title = {Pith review of: Standard vs. Modular Sampling: Best Practices for Reliable LLM Unlearning},
year = {2026},
howpublished = {\url{https://pith.science/paper/2ZIIXDED}},
note = {Machine review of arXiv:2509.05316}
}
read the original abstract
A conventional LLM Unlearning setting consists of two subsets -"forget" and "retain", with the objectives of removing the undesired knowledge from the forget set while preserving the remaining knowledge from the retain. In privacy-focused unlearning research, a retain set is often further divided into neighbor sets, containing either directly or indirectly connected to the forget targets; and augmented by a general-knowledge set. A common practice in existing benchmarks is to employ only a single neighbor set, with general knowledge which fails to reflect the real-world data complexities and relationships. LLM Unlearning typically involves 1:1 sampling or cyclic iteration sampling. However, the efficacy and stability of these de facto standards have not been critically examined. In this study, we systematically evaluate these common practices. Our findings reveal that relying on a single neighbor set is suboptimal and that a standard sampling approach can obscure performance trade-offs. Based on this analysis, we propose and validate an initial set of best practices: (1) Incorporation of diverse neighbor sets to balance forget efficacy and model utility, (2) Standard 1:1 sampling methods are inefficient and yield poor results, (3) Our proposed Modular Entity-Level Unlearning (MELU) strategy as an alternative to cyclic sampling. We demonstrate that this modular approach, combined with robust algorithms, provides a clear and stable path towards effective unlearning.
Figures
Reference graph
Works this paper leans on
-
[1]
In: Proceedingsofthe34thInternationalConferenceonNeuralInformationProcessing Systems
Brown, T.B., Mann, B., Ryder, e.a.: Language models are few-shot learners. In: Proceedingsofthe34thInternationalConferenceonNeuralInformationProcessing Systems. NIPS ’20, Curran Associates Inc., Red Hook, NY, USA (2020)
work page 2020
-
[2]
Carlini, N., Ippolito, D., Jagielski, M., Lee, K., Tramer, F., Zhang, C.: Quantifying memorization across neural language models. In: The Eleventh International Con- ference on Learning Representations (2023),https://openreview.net/forum?id= TatRHT_1cK
work page 2023
-
[3]
In: 30th USENIX Security Symposium (USENIX Security 21)
Carlini, N., Tramèr, F., Wallace, E., Jagielski, M., Herbert-Voss, A., Lee, K., Roberts, A., Brown, T., Song, D., Erlingsson, Ú., Oprea, A., Raffel, C.: Ex- tracting training data from large language models. In: 30th USENIX Security Symposium (USENIX Security 21). pp. 2633–2650. USENIX Association (Aug 2021), https://www.usenix.org/conference/usenixsecuri...
work page 2021
-
[4]
In: Che, W., Nabende, J., Shutova, E., Pilehvar, M.T
Chang, H., Lee, H.: Which retain set matters for LLM unlearning? a case study on entity unlearning. In: Che, W., Nabende, J., Shutova, E., Pilehvar, M.T. (eds.) Findings of the Association for Computational Linguistics: ACL
-
[5]
In: Che, W., Nabende, J., Shutova, E., Pilehvar, M.T
Choi, M., Rim, D., Lee, D., Choo, J.: Opt-out: Investigating entity-level un- learning for large language models via optimal transport. In: Che, W., Nabende, J., Shutova, E., Pilehvar, M.T. (eds.) Proceedings of the 63rd Annual Meet- ing of the Association for Computational Linguistics (Volume 1: Long Pa- pers). pp. 28280–28297. Association for Computatio...
-
[6]
Chollet, F., Knoop, M., Kamradt, G., Landers, B.: Arc prize 2024: Technical report (2025), https://arxiv.org/abs/2412.04604
Pith/arXiv arXiv 2024
-
[7]
com/locuslab/open-unlearning (2025), accessed: February 27, 2025
Dorna, V., Mekala, A., Zhao, W., McCallum, A., Kolter, J.Z., Maini, P.: OpenUn- learning: A unified framework for llm unlearning benchmarks.https://github. com/locuslab/open-unlearning (2025), accessed: February 27, 2025
work page 2025
-
[8]
Fan, C., Liu, J., Lin, L., Jia, J., Zhang, R., Mei, S., Liu, S.: Simplicity prevails: Rethinking negative preference optimization for LLM unlearning (2025),https: //openreview.net/forum?id=Pd3jVGTacT
work page 2025
-
[9]
In: 2020 IEEE/CVF Confer- ence on Computer Vision and Pattern Recognition (CVPR)
Golatkar, A., Achille, A., Soatto, S.: Eternal Sunshine of the Spotless Net: Selective Forgetting in Deep Networks . In: 2020 IEEE/CVF Confer- ence on Computer Vision and Pattern Recognition (CVPR). pp. 9301–9309. IEEE Computer Society, Los Alamitos, CA, USA (Jun 2020). https://doi. org/10.1109/CVPR42600.2020.00932, https://doi.ieeecomputersociety.org/ 10...
arXiv 2020
-
[10]
Grattafiori, A., Dubey, A., et al, A.J.: The llama 3 herd of models (2024),https: //arxiv.org/abs/2407.21783
Pith/arXiv arXiv 2024
-
[11]
In: International Con- ference on Learning Representations (2022),https://openreview.net/forum?id= nZeVKeeFYf9
Hu, E.J., yelong shen, Wallis, P., Allen-Zhu, Z., Li, Y., Wang, S., Wang, L., Chen, W.: LoRA: Low-rank adaptation of large language models. In: International Con- ference on Learning Representations (2022),https://openreview.net/forum?id= nZeVKeeFYf9
2022
-
[12]
In: Rogers, A., Boyd-Graber, J., Okazaki, N
Jang, J., Yoon, D., Yang, S., Cha, S., Lee, M., Logeswaran, L., Seo, M.: Knowl- edge unlearning for mitigating privacy risks in language models. In: Rogers, A., Boyd-Graber, J., Okazaki, N. (eds.) Proceedings of the 61st Annual Meet- ing of the Association for Computational Linguistics (Volume 1: Long Pa- pers). pp. 14389–14408. Association for Computatio...
-
[13]
Ji, J., Liu, Y., Zhang, Y., Liu, G., Kompella, R.R., Liu, S., Chang, S.: Reversing the forget-retain objectives: An efficient LLM unlearning framework from logit differ- ence. In: The Thirty-eighth Annual Conference on Neural Information Processing Systems (2024), https://openreview.net/forum?id=tYdR1lTWqh
work page 2024
-
[14]
Jin, Z., Cao, P., Wang, C., He, Z., Yuan, H., Li, J., Chen, Y., Liu, K., Zhao, J.: RWKU: Benchmarking real-world knowledge unlearning for large language models. In: The Thirty-eight Conference on Neural Information Processing Sys- tems Datasets and Benchmarks Track (2024),https://openreview.net/forum? id=wOmtZ5FgMH Standard vs. Modular Sampling: Best Prac...
work page 2024
-
[15]
In: Sec- ond Conference on Language Modeling (2025),https://openreview.net/forum? id=Kd97lfFfTu
Krishnan, A., Reddy, S., Mosbach, M.: Not all data are unlearned equally. In: Sec- ond Conference on Language Modeling (2025),https://openreview.net/forum? id=Kd97lfFfTu
work page 2025
-
[16]
Li, J., Galley, M., Brockett, C., Gao, J., Dolan, B.: A diversity-promoting objective function for neural conversation models. In: Proceedings of the 2016 Conference of the North American Chapter of the Association for Computational Linguistics: Hu- man Language Technologies. pp. 110–119. Association for Computational Linguis- tics, San Diego, California ...
-
[17]
In: Proceedings of the 41st Inter- national Conference on Machine Learning
Li, N., Pan, A., Gopal, A., Yue, S., Berrios, e.a.: The WMDP benchmark: Measur- ing and reducing malicious use with unlearning. In: Proceedings of the 41st Inter- national Conference on Machine Learning. Proceedings of Machine Learning Re- search, vol. 235, pp. 28525–28550. PMLR (21–27 Jul 2024),https://proceedings. mlr.press/v235/li24bc.html
work page 2024
-
[18]
In: Text Summarization Branches Out
Lin, C.Y.: ROUGE: A package for automatic evaluation of summaries. In: Text Summarization Branches Out. pp. 74–81. Association for Computational Linguis- tics, Barcelona, Spain (Jul 2004),https://aclanthology.org/W04-1013/
work page 2004
-
[19]
Liu, B., Liu, Q., Stone, P.: Continual learning and private unlearning (2022), https://arxiv.org/abs/2203.12817
Pith/arXiv arXiv 2022
-
[20]
Nature Machine Intelligence 7, 181–194 (2025)
Liu, S., Yao, Y., Jia, J., et al.: Rethinking machine unlearning for large language models. Nature Machine Intelligence 7, 181–194 (2025). https://doi.org/10. 1038/s42256-025-00985-0, https://doi.org/10.1038/s42256-025-00985-0
-
[21]
In: Proceed- ings of the 2024 Conference on Empirical Methods in Natural Language Process- ing
Liu, Y., Zhang, Y., Jaakkola, T., Chang, S.: Revisiting who‘s harry potter: To- wards targeted unlearning from a causal intervention perspective. In: Proceed- ings of the 2024 Conference on Empirical Methods in Natural Language Process- ing. pp. 8708–8731. Association for Computational Linguistics, Miami, Florida, USA (Nov 2024).https://doi.org/10.18653/v...
-
[22]
In: First Conference on Language Modeling (2024), https://openreview.net/forum?id=B41hNBoWLo
Maini, P., Feng, Z., Schwarzschild, A., Lipton, Z.C., Kolter, J.Z.: TOFU: A task of fictitious unlearning for LLMs. In: First Conference on Language Modeling (2024), https://openreview.net/forum?id=B41hNBoWLo
work page 2024
-
[23]
In: Proceedings of the 31st International Con- ference on Computational Linguistics
Mekala, A., Dorna, V., Dubey, S., Lalwani, A., Koleczek, D., Rungta, M., Hasan, S., Lobo, E.: Alternate preference optimization for unlearning factual knowl- edge in large language models. In: Proceedings of the 31st International Con- ference on Computational Linguistics. pp. 3732–3752. Association for Compu- tational Linguistics, Abu Dhabi, UAE (Jan 202...
work page 2025
-
[24]
Transactions on Machine Learning Research (2025),https://openreview
Miranda, M., Ruzzetti, E.S., Santilli, A., Zanzotto, F.M., Bratières, S., Rodolà, E.: Preserving privacy in large language models: A survey on current threats and solu- tions. Transactions on Machine Learning Research (2025),https://openreview. net/forum?id=Ss9MTTN7OL
work page 2025
-
[25]
In: Rosen- thal, S., Rosá, A., Ghosh, D., Zampieri, M
Premptis, I., Lymperaiou, M., Filandrianos, G., Menis Mastromichalakis, O., Voulodimos, A., Stamou, G.: AILS-NTUA at SemEval-2025 task 4: Parameter- efficient unlearning for large language models using data chunking. In: Rosen- thal, S., Rosá, A., Ghosh, D., Zampieri, M. (eds.) Proceedings of the 19th In- ternational Workshop on Semantic Evaluation (SemEv...
work page 2025
-
[26]
Qiu, X., Shen, W.F., Chen, Y., Kurmanji, M., Cancedda, N., Stenetorp, P., Lane, N.D.: How data inter-connectivity shapes llms unlearning: A structural unlearning perspective (2025), https://arxiv.org/abs/2406.16810 16 P.Bushipaka et al
Pith/arXiv arXiv 2025
-
[27]
In: Pro- ceedings of the 37th International Conference on Neural Information Processing Systems
Rafailov, R., Sharma, A., Mitchell, E., Ermon, S., Manning, C.D., Finn, C.: Direct preference optimization: your language model is secretly a reward model. In: Pro- ceedings of the 37th International Conference on Neural Information Processing Systems. NIPS ’23, Curran Associates Inc., Red Hook, NY, USA (2023)
work page 2023
-
[28]
Reimers, N., Gurevych, I.: Sentence-BERT: Sentence embeddings using Siamese BERT-networks. In: Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing and the 9th International Joint Conference on Natural Language Processing (EMNLP-IJCNLP). pp. 3982–3992. Association for Computational Linguistics, Hong Kong, China (Nov 2019)...
work page 2019
-
[29]
Staab, R., Vero, M., Balunovic, M., Vechev, M.: Beyond memorization: Violating privacy via inference with large language models. In: The Twelfth International Conference on Learning Representations (2024),https://openreview.net/forum? id=kmn0BhQk7p
work page 2024
-
[30]
Thaker, P., Hu, S., Kale, N., Maurya, Y., Wu, Z.S., Smith, V.: Position: Llm unlearning benchmarks are weak measures of progress (2025), https://arxiv. org/abs/2410.02879
Pith/arXiv arXiv 2025
-
[31]
Tirumala, K., Markosyan, A.H., Zettlemoyer, L., Aghajanyan, A.: Memorization without overfitting: Analyzing the training dynamics of large language models. In: Oh,A.H.,Agarwal,A.,Belgrave,D.,Cho,K.(eds.)AdvancesinNeuralInformation Processing Systems (2022),https://openreview.net/forum?id=u3vEuRr08MT
work page 2022
-
[32]
In: Proceedings of the 31st International Conference on Neural Information Processing Systems
Vaswani, A., Shazeer, N., Parmar, N., Uszkoreit, J., Jones, L., Gomez, A.N., Kaiser, L., Polosukhin, I.: Attention is all you need. In: Proceedings of the 31st International Conference on Neural Information Processing Systems. p. 6000–6010. NIPS’17, Curran Associates Inc., Red Hook, NY, USA (2017)
2017
-
[33]
Wang, Q., Zhou, J.P., Zhou, Z., Shin, S., Han, B., Weinberger, K.Q.: Rethink- ing LLM unlearning objectives: A gradient perspective and go beyond. In: The Thirteenth International Conference on Learning Representations (2025),https: //openreview.net/forum?id=huo8MqVH6t
work page 2025
-
[34]
Wang, Y., Ma, X., Zhang, G., Ni, Y., Chandra, A., Guo, S., Ren, W., Arulraj, A., He, X., Jiang, Z., Li, T., Ku, M., Wang, K., Zhuang, A., Fan, R., Yue, X., Chen, W.: Mmlu-pro: A more robust and challenging multi-task language understanding benchmark (2024), https://arxiv.org/abs/2406.01574
Pith/arXiv arXiv 2024
-
[35]
Yao, Y., Xu, X., Liu, Y.: Large language model unlearning. In: The Thirty-eighth Annual Conference on Neural Information Processing Systems (2024),https:// openreview.net/forum?id=8Dy42ThoNe
work page 2024
-
[36]
Yuan, X., Pang, T., Du, C., Chen, K., Zhang, W., Lin, M.: A closer look at ma- chine unlearning for large language models. In: The Thirteenth International Con- ference on Learning Representations (2025),https://openreview.net/forum?id= Q1MHvGmhyT
work page 2025
-
[37]
(eds.) Proceedings of the 57th Annual Meeting of the Association for Com- putational Linguistics
Zellers, R., Holtzman, A., Bisk, Y., Farhadi, A., Choi, Y.: HellaSwag: Can a machine really finish your sentence? In: Korhonen, A., Traum, D., Màrquez, L. (eds.) Proceedings of the 57th Annual Meeting of the Association for Com- putational Linguistics. pp. 4791–4800. Association for Computational Linguis- tics, Florence, Italy (Jul 2019).https://doi.org/1...
-
[38]
Zhang, R., Lin, L., Bai, Y., Mei, S.: Negative preference optimization: From catas- trophic collapse to effective unlearning. In: First Conference on Language Modeling (2024), https://openreview.net/forum?id=MXLBXjQkmb Standard vs. Modular Sampling: Best Practices for Reliable LLM Unlearning 17
work page 2024
-
[39]
Zhang, S., Hu, Y., Bian, G.: Research on string similarity algorithm based on levenshtein distance. In: 2017 IEEE 2nd Advanced Information Technology, Electronic and Automation Control Conference (IAEAC). pp. 2247–2251 (2017). https://doi.org/10.1109/IAEAC.2017.8054419 A Appendix A.1 Prompts Q&A GenerationThis prompt was used to extract Q&As from the wiki...
-
[41]
ROUGE-L provides the longest sequence overlap and the verbatim memory of the Unlearned Model(M ; θ∗)
score between the generated responseg(x; θ∗) and the ground-truth answer y, written asROU GE− L(g(x; θ∗), y). ROUGE-L provides the longest sequence overlap and the verbatim memory of the Unlearned Model(M ; θ∗). CosineSimilarity(CS) measuresthesemanticsimilarityofthemodel’soutput against the ground-truth. We follow [36] setup, embed both with Sentence-BER...
-
[2025]
pp. 5966–5982. Association for Computational Linguistics, Vienna, Aus- tria (Jul 2025).https://doi.org/10.18653/v1/2025.findings-acl.310, https: //aclanthology.org/2025.findings-acl.310/
This paper was first reviewed by deepseek-v4-flash on August 5, 2026.
discussion (0)
Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.