REVIEW 4 major objections 5 minor 56 references
Soft Weighted Machine Unlearning
T0 review · 4 major / 5 minor · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read Replacing binary deletion with optimized continuous weights is the paper's fix for over-unlearning in fairness and robustness tasks, and it reports better target metrics with less utility loss.
desk verdict Soft weighting is a genuine advance for unlearning, but the unvalidated additivity assumption means the headline results rest on a first-order approximation the paper never checks. 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 load-bearing object is the weighted influence function: for a validation-set metric, $I_{\text{metric}}(z_j; \epsilon_j) = -\epsilon_j I_{\text{metric}}(z_j;-1)$, where $I_{\text{metric}}(z_j;-1)$ approximates the leave-one-out change from dropping sample $z_j$ via a Hessian-inverse gradient product, e.g. $\nabla_\theta f(T;\hat\theta)^\top H^{-1}_{\hat\theta} \nabla_\theta \ell(z_j;\hat\theta)$ for fairness. This identity converts unlearning from a binary decision into a linear-in-$\epsilon$ control problem. The weights come from the convex quadratic program of Eq. (6), whose objective is total metric influence plus an $\ell^2$ penalty, with a lower bound preventing over-correction and a constraint protecting utility, and the paper derives the piecewise analytical solution in Eq. (7). The final model update is the closed-form sum in Eq. (8); Eq. (9) shows the same weights can be reinterpreted as per-sample gradient scaling, which is the mechanism that lets the scheme be dropped into gradient-based unlearning algorithms.
What would settle it
On the Adult dataset, compute the quadratic-program weights from Eq. (6), then retrain the model from scratch on the dataset reweighted by those exact weights and measure the realized change in demographic parity and test loss against the influence-predicted change; if the realized gains are much smaller than predicted or utility drops, the additivity assumption underlying Eqs. (3)-(5) is the point of failure.
Extended reading notes
Core claim
The paper's central claim is that the hard-weighted (binary) framing of machine unlearning is wrong for non-privacy tasks, and that replacing it with optimized continuous per-sample weights yields better corrections. Concretely, it defines weighted influence functions $I_{\text{metric}}(z_j; \epsilon_j) = -\epsilon_j I_{\text{metric}}(z_j;-1)$ for utility, fairness (demographic parity and equal opportunity), and adversarial robustness, then solves a convex quadratic program that minimizes the targeted influence while capping total correction (to avoid reverse bias) and requiring that the predicted utility change stay non-positive. The resulting weights are applied either in a closed-form parameter update or, equivalently, by scaling gradient-ascent and fine-tuning updates, which is why the scheme ports across gradient-ascent/fine-tuning, influence-function, Fisher, NTK, SCRUB, Bad-T, CF-k, and EU-k unlearning. The empirical claim is that soft-weighted variants outperform hard-weighted ones on the target metric and reduce accuracy decline, sometimes improving both (called "free lunch"), across Adult, Bank, CelebA, Jigsaw, and CIFAR-100.
Load-bearing premise
The scheme assumes that the total effect of reweighting many samples at once equals the sum of the individual leave-one-out influence estimates, an assumption the paper validates only for single-sample removal; if simultaneous reweighting has large interaction effects, the predicted fairness, robustness, and utility gains will not appear on the test set.
Editorial extensions
If this is right
- Soft-weighted unlearning can be added to most existing unlearning pipelines as a drop-in weighting step, so improved fairness and robustness corrections do not require inventing a new unlearning algorithm.
- Because the quadratic program explicitly constrains predicted utility, soft-weighted corrections can avoid the accuracy degradation that hard deletion causes; on smaller datasets the experiments show both target metric and accuracy improving together, which the paper calls free lunch cases.
- The weighting step has negligible overhead (about 0.03% of the unlearning runtime in the reported influence-function experiments), making it practical in settings where repeated deletion-rate searches would be too costly.
- The leave-one-out counterfactual analysis gives a reusable diagnostic: fairness and robustness impact are nearly uncorrelated with utility impact, which explains over-unlearning and gives future methods a way to identify which samples to reweight rather than delete.
Reading between the lines
- The same continuous-reweighting recipe could apply beyond fairness and robustness to any post-hoc model correction, such as removing poisoned or outdated data, so the paper's central mechanism is a general template for influence-based editing rather than a task-specific fix.
- The diagnosis that borderline samples flip into opposite bias suggests that a fixed deletion rate is an artifact of binary unlearning; under soft weighting, the meaningful quantity would be the total allowed influence shift, which the quadratic program already caps. The paper does not pursue this reframing.
- A concrete untested extension is large-language-model unlearning: the paper states that its framework was not evaluated on LLMs, and since gradient-ascent LLM unlearning suffers from utility collapse, applying the same soft weights to the ascent steps is a natural experiment that would test the framework's generality.
- Because the utility constraint only bounds predicted influence, a stress test outside the paper would be to check whether the realized utility constraint holds when soft weights are applied through multi-step gradient updates rather than the closed-form Newton step; the paper's Eq. (9) suggests it should, but interactions could break it.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. This paper proposes soft-weighted machine unlearning: rather than binarizing each sample into "forget" (remove) or "keep", it assigns a continuous weight to every training sample. The weights are obtained by solving a convex quadratic program (Eq. 6) whose objective and constraints are built from influence-function estimates of fairness/robustness and utility changes. The resulting weights are applied either through a closed-form influence-based model update (Eq. 8) or through weighted versions of gradient ascent/fine-tuning and other unlearning algorithms (Appendix A.3). The paper identifies three causes of over-unlearning, reports explanatory experiments validating single-sample influence estimates, and presents comparisons of hard- versus soft-weighted versions of nine unlearning algorithms on fairness and robustness tasks.
Significance. The idea of replacing hard removal with a soft, optimization-driven weighting is timely and, if validated, would be a useful plug-in for existing unlearning methods. Strengths include an explicit and checkable KKT derivation of the four-case QP solution, an honest limitation statement, and broad empirical coverage (five datasets, nine algorithms, LR/NN/ResNet models). The main weaknesses are that the central linear-superposition assumption of the influence estimates is not validated for simultaneous non-infinitesimal weights, and the experimental evidence is not fully reproducible. These are fixable within the scope of a revision, so the contribution is conditionally significant.
major comments (4)
- [§4.2–§4.3, Eqs. (6)–(8)] The optimization and update assume that the total effect of a weight vector ϵ is the sum of per-sample first-order influence terms, I_metric(z_i; ϵ_i) = −ϵ_i I_metric(z_i; −1), and Eq. (8) updates θ by −(1/n) Σ_i ϵ_i H^{-1}∇ℓ(z_i; θ). This linear-superposition assumption ignores Hessian changes and interactions among simultaneously reweighted samples. It is validated only for single-sample removal (ϵ_i = −1) in Fig. 3 and Appendix Fig. 9, while the optimized weights are not small: Fig. 4 shows weights spanning roughly −1 to 1, and Case 2 of Eq. (7) yields a λ-independent solution. The paper reports no check of predicted versus actual total change under the optimized ϵ, so the utility-preservation constraint (6c) and the target-objective gain (6a) may not hold for the actually updated model. Please add a direct validation: apply Eq. (8) with optimized weights on a validation split, measure the actual changes in utility/fairness/robustness, and compare them with the values predicted by Eq. (6), reporting correlation and constraint-satisfaction rates.
- [§4.4 and Appendix A.3, Eq. (29)] The soft-weighted gradient update has a sign error relative to the stated hard-weighted special cases. Eq. (29) writes θ_{t+1} = θ_t + ϵ_j η_t ∇ℓ(z_j; θ_t). For fine-tuning, §4.4 sets ϵ_r = 1, which would give θ + η∇ℓ (gradient ascent on the remaining set), but Eq. (28) correctly defines FT as θ − η∇ℓ. For gradient ascent, §4.4 sets ϵ_f = −1, which would give θ − η∇ℓ, the opposite of Eq. (27). Either the sign in Eq. (29) or the mapping in §4.4 is inconsistent; please correct and state the exact update used for SW-GAFT, SW-CF-k, and SW-EU-k. A related omission appears in Eq. (37), where the max-step for soft-weighted SCRUB does not contain ϵ_f, so the stated objective in Eq. (35) is not implemented by the update.
- [§5 and Appendix B] The values of the key hyperparameters are not reported: λ in Eq. (6) (it enters Cases 1 and 3 of the solution in Eq. (7)), γ in the robustness perturbation definition in §3, and σ (or the learning-rate schedule η_t) in Eq. (9). Without these values the reported numbers cannot be reproduced, and the claim of negligible overhead cannot be verified. Please report the chosen values, the tuning procedure, and a sensitivity analysis for λ and γ.
- [§5.2, Fig. 5; Appendix B.3.3] The main comparisons are single-run plots without error bars or seed counts, and no code is provided. The hard-weighted baseline procedure is described inconsistently: §5.2 says 'iteratively removing the most harmful samples until no further improvement is observed in fairness,' while Appendix B.3.3 says the hard-weighted framework 'consistently removes 20% of the training samples.' The claim of significant improvement needs a defined baseline protocol and variance estimates. Please report means and standard deviations over multiple seeds, specify the exact deletion/stopping rule, and release code or a detailed protocol.
minor comments (5)
- [Eq. (7), Condition 2] Condition 2 in Eq. (7) appears to be missing an operator; it should read |I_metric|^2 − 2λΔ ≥ 0, matching the condition in Appendix A.2.
- [Eqs. (3)–(5) and §5] The symbol T is used for both the validation set (Eqs. 3–5) and the test set (Section 5); please introduce distinct notation, such as T_val and T_test, to remove ambiguity.
- [Figure 1] Figure 1 reports Spearman correlations of −0.11 and −0.16 without confidence intervals or p-values; please report effect sizes and uncertainty, especially given the large sample size.
- [References] References [2] and [17] are the same paper, as are [21] and [22]; please consolidate them into single entries.
- [Limitation and Societal Impacts] The appended limitation statement is helpful, but it should also mention the missing hyperparameter values and the unavailability of code, in addition to the already noted gap for LLM unlearning.
Circularity Check
No significant circularity: the soft-weighted scheme is optimized on validation-set influence estimates and evaluated on a held-out test set; the central claim does not reduce to its inputs.
full rationale
The paper's derivation chain is not circular. The weights in Eq. (6) are obtained by solving a convex quadratic program whose objective and constraints are built from leave-one-out influence estimates computed on a validation set, and the reported fairness, robustness, and utility numbers in Figures 5, 10, and 11 are measured on a held-out test set after the weighted update. No equation in the paper defines the reported test metrics in terms of the optimized weight vector by construction: Eq. (8) is an influence-function approximation of the parameter change, and the actual post-unlearning metrics are computed from the updated model, not from the QP objective. The only self-citation is reference [37], cited in a footnote as one of three practical strategies for non-convex models; it does not carry the central claim and is not load-bearing. The main correctness risk is that the QP assumes first-order additivity of per-sample influence estimates and validates this only for single-sample leave-one-out removal, so the predicted gains could fail under simultaneously applied non-infinitesimal weights; this is an approximation-risk concern, not circularity.
Assumptions & free parameters
free parameters (3)
- lambda =
not reported
- gamma =
not reported
- sigma =
not reported
assumptions (4)
- domain assumption Empirical risk is twice-differentiable and strictly convex for Eq. (2).
- domain assumption Total effect of reweighting many samples equals the sum of individual leave-one-out influence estimates.
- domain assumption Validation set is representative of the test set.
- standard math KKT conditions and strong duality hold for the convex quadratic program.
Cite this review
Pith. "Pith review of Soft Weighted Machine Unlearning." pith.science (2026). https://pith.science/paper/UXKDAJRW
@misc{pith2026250518783,
author = {Pith},
title = {Pith review of: Soft Weighted Machine Unlearning},
year = {2026},
howpublished = {\url{https://pith.science/paper/UXKDAJRW}},
note = {Machine review of arXiv:2505.18783}
}
read the original abstract
Machine unlearning, as a post-hoc processing technique, has gained widespread adoption in addressing challenges like bias mitigation and robustness enhancement, colloquially, machine unlearning for fairness and robustness. However, existing non-privacy unlearning-based solutions persist in using binary data removal framework designed for privacy-driven motivation, leading to significant information loss, a phenomenon known as over-unlearning. While over-unlearning has been largely described in many studies as primarily causing utility degradation, we investigate its fundamental causes and provide deeper insights in this work through counterfactual leave-one-out analysis. In this paper, we introduce a weighted influence function that assigns tailored weights to each sample by solving a convex quadratic programming problem analytically. Building on this, we propose a soft-weighted framework enabling fine-grained model adjustments to address the over-unlearning challenge. We demonstrate that the proposed soft-weighted scheme is versatile and can be seamlessly integrated into most existing unlearning algorithms. Extensive experiments show that in fairness- and robustness-driven tasks, the soft-weighted scheme significantly outperforms hard-weighted schemes in fairness/robustness metrics and alleviates the decline in utility metric, thereby enhancing machine unlearning algorithm as an effective correction solution.
Figures
Figures from the paper (10 more)
Reference graph
Works this paper leans on
-
[1]
Fast model debias with machine unlearning
Ruizhe Chen, Jianfei Yang, Huimin Xiong, Jianhong Bai, Tianxiang Hu, Jin Hao, Yang Feng, Joey Tianyi Zhou, Jian Wu, and Zuozhu Liu. Fast model debias with machine unlearning. Advances in Neural Information Processing Systems, 36, 2024. 1, 2, 3, 4, 5, 6, 7
work page 2024
-
[2]
Fair machine unlearning: Data removal while mitigating disparities
Alex Oesterling, Jiaqi Ma, Flavio Calmon, and Himabindu Lakkaraju. Fair machine unlearning: Data removal while mitigating disparities. InInternational Conference on Artificial Intelligence and Statistics, pages 3736–3744. PMLR, 2024. 1
work page 2024
-
[3]
Backdoor defense with machine unlearning
Yang Liu, Mingyuan Fan, Cen Chen, Ximeng Liu, Zhuo Ma, Li Wang, and Jianfeng Ma. Backdoor defense with machine unlearning. InIEEE INFOCOM 2022-IEEE conference on computer communications, pages 280–289. IEEE, 2022. 1
work page 2022
-
[4]
Recommendation unlearning via influence function.ACM Transactions on Recommender Systems, 2023
Yang Zhang, Zhiyu Hu, Yimeng Bai, Jiancan Wu, Qifan Wang, and Fuli Feng. Recommendation unlearning via influence function.ACM Transactions on Recommender Systems, 2023. 1, 3, 4
work page 2023
-
[5]
Delta- influence: Unlearning poisons via influence functions.arXiv preprint arXiv:2411.13731, 2024
Wenjie Li, Jiawei Li, Christian Schroeder de Witt, Ameya Prabhu, and Amartya Sanyal. Delta- influence: Unlearning poisons via influence functions.arXiv preprint arXiv:2411.13731, 2024. 1
-
[6]
Meghdad Kurmanji, Eleni Triantafillou, and Peter Triantafillou. Machine unlearning in learned databases: An experimental analysis.Proceedings of the ACM on Management of Data, 2(1):1–26, 2024. 1
work page 2024
-
[7]
A duty to forget, a right to be assured? exposing vulnerabilities in machine unlearning services
Hongsheng Hu, Shuo Wang, Jiamin Chang, Haonan Zhong, Ruoxi Sun, Shuang Hao, Haojin Zhu, and Minhui Xue. A duty to forget, a right to be assured? exposing vulnerabilities in machine unlearning services. In31st Annual Network and Distributed System Security Symposium, NDSS 2024, San Diego, California, USA, February 26 - March 1, 2024. The Internet Society, 2024. 2
work page 2024
-
[8]
Machine unlearning via null space calibration
Huiqiang Chen, Tianqing Zhu, Xin Yu, and Wanlei Zhou. Machine unlearning via null space calibration. InProceedings of the Thirty-Third International Joint Conference on Artificial Intelligence, IJCAI 2024, Jeju, South Korea, August 3-9, 2024, pages 358–366. ijcai.org, 2024. 2
work page 2024
Show all 56 references
-
[9]
Barry Becker and Ronny Kohavi. Adult. UCI Machine Learning Repository, 1996. 2, 6
1996
-
[10]
Cynthia Dwork, Moritz Hardt, Toniann Pitassi, Omer Reingold, and Richard S. Zemel. Fairness through awareness. In Shafi Goldwasser, editor,Innovations in Theoretical Computer Science 2012, Cambridge, MA, USA, January 8-10, 2012, pages 214–226. ACM, 2012. 2, 3, 24
2012
-
[11]
Adversarial robustness of linear models: regularization and dimensionality
István Megyeri, István Hegedüs, and Márk Jelasity. Adversarial robustness of linear models: regularization and dimensionality. In27th European Symposium on Artificial Neural Networks, ESANN 2019, Bruges, Belgium, April 24-26, 2019, 2019. 2, 3, 24
2019
-
[12]
Model sparsity can simplify machine unlearning
Jinghan Jia, Jiancheng Liu, Parikshit Ram, Yuguang Yao, Gaowen Liu, Yang Liu, Pranay Sharma, and Sijia Liu. Model sparsity can simplify machine unlearning. In Alice Oh, Tristan Naumann, Amir Globerson, Kate Saenko, Moritz Hardt, and Sergey Levine, editors,Advances in Neural In...
2023
-
[13]
Towards un- bounded machine unlearning
Meghdad Kurmanji, Peter Triantafillou, Jamie Hayes, and Eleni Triantafillou. Towards un- bounded machine unlearning. In Alice Oh, Tristan Naumann, Amir Globerson, Kate Saenko, Moritz Hardt, and Sergey Levine, editors,Advances in Neural Information Processing Systems 36: Annual...
2023
-
[14]
Evaluating inexact unlearning requires revisiting forgetting.CoRR, abs/2201.06640, 2022
Shashwat Goel, Ameya Prabhu, and Ponnurangam Kumaraguru. Evaluating inexact unlearning requires revisiting forgetting.CoRR, abs/2201.06640, 2022. 3, 6, 19 10
2022 arXiv
-
[15]
Unlearn what you want to forget: Efficient unlearning for llms
Jiaao Chen and Diyi Yang. Unlearn what you want to forget: Efficient unlearning for llms. In Houda Bouamor, Juan Pino, and Kalika Bali, editors,Proceedings of the 2023 Conference on Empirical Methods in Natural Language Processing, EMNLP 2023, Singapore, December 6-10, 2023, p...
2023
-
[16]
Understanding black-box predictions via influence functions
Pang Wei Koh and Percy Liang. Understanding black-box predictions via influence functions. In Doina Precup and Yee Whye Teh, editors,Proceedings of the 34th International Conference on Machine Learning, ICML 2017, Sydney, NSW, Australia, 6-11 August 2017, volume 70 of Proceedi...
2017
-
[17]
Calmon, and Himabindu Lakkaraju
Alex Oesterling, Jiaqi Ma, Flávio P. Calmon, and Himabindu Lakkaraju. Fair machine un- learning: Data removal while mitigating disparities. In Sanjoy Dasgupta, Stephan Mandt, and Yingzhen Li, editors,International Conference on Artificial Intelligence and Statistics, 2-4 May 2...
2024
-
[18]
Debiasing machine unlearning with counterfactual examples.CoRR, abs/2404.15760, 2024
Ziheng Chen, Jia Wang, Jun Zhuang, Abbavaram Gowtham Reddy, Fabrizio Silvestri, Jin Huang, Kaushiki Nag, Kun Kuang, Xin Ning, and Gabriele Tolomei. Debiasing machine unlearning with counterfactual examples.CoRR, abs/2404.15760, 2024. 3
2024 arXiv
-
[19]
Fairness and robustness in machine unlearning.arXiv preprint arXiv:2504.13610, 2025
Khoa Tran and Simon S Woo. Fairness and robustness in machine unlearning.arXiv preprint arXiv:2504.13610, 2025. 3
2025 arXiv
-
[20]
Toward robust unlearning for LLMs
Rishub Tamirisa, Bhrugu Bharathi, Andy Zhou, Bo Li, and Mantas Mazeika. Toward robust unlearning for LLMs. InICLR 2024 Workshop on Secure and Trustworthy Large Language Models, 2024. 3
2024
-
[21]
Robust federated unlearning
Xinyi Sheng, Wei Bao, and Liming Ge. Robust federated unlearning. InProceedings of the 33rd ACM International Conference on Information and Knowledge Management, 2024. 3
2024
-
[22]
Robust federated unlearning
Xinyi Sheng, Wei Bao, and Liming Ge. Robust federated unlearning. In Edoardo Serra and Francesca Spezzano, editors,Proceedings of the 33rd ACM International Conference on Information and Knowledge Management, CIKM 2024, Boise, ID, USA, October 21-25, 2024, pages 2034–2044. ACM...
2024
-
[23]
Mitigating social biases in language models through unlearning.arXiv preprint arXiv:2406.13551, 2024
Omkar Dige, Diljot Singh, Tsz Fung Yau, Qixuan Zhang, Borna Bolandraftar, Xiaodan Zhu, and Faiza Khan Khattak. Mitigating social biases in language models through unlearning.arXiv preprint arXiv:2406.13551, 2024. 3
2024 arXiv
-
[24]
AUTE: peer-alignment and self-unlearning boost adversarial robustness for training ensemble models
Lifeng Huang, Tian Su, Chengying Gao, Ning Liu, and Qiong Huang. AUTE: peer-alignment and self-unlearning boost adversarial robustness for training ensemble models. In Toby Walsh, Julie Shah, and Zico Kolter, editors,AAAI-25, Sponsored by the Association for the Advancement of...
2025
-
[25]
50 years of test (un)fairness: Lessons for machine learning
Ben Hutchinson and Margaret Mitchell. 50 years of test (un)fairness: Lessons for machine learning. In danah boyd and Jamie H. Morgenstern, editors,Proceedings of the Conference on Fairness, Accountability, and Transparency, FAT* 2019, Atlanta, GA, USA, January 29-31, 2019, pag...
2019
-
[26]
Fairness in machine learning: A survey.ACM Comput
Simon Caton and Christian Haas. Fairness in machine learning: A survey.ACM Comput. Surv., 56(7):166:1–166:38, 2024. 3
2024
-
[27]
Fair prediction with disparate impact: A study of bias in recidivism prediction instruments.Big Data, 5(2):153–163, 2017
Alexandra Chouldechova. Fair prediction with disparate impact: A study of bias in recidivism prediction instruments.Big Data, 5(2):153–163, 2017. 3
2017
-
[28]
Algorithmic fairness
Jon Kleinberg, Jens Ludwig, Sendhil Mullainathan, and Ashesh Rambachan. Algorithmic fairness. InAea papers and proceedings, volume 108, pages 22–27, 2018. 3
2018
-
[29]
Equality of opportunity in supervised learning
Moritz Hardt, Eric Price, and Nati Srebro. Equality of opportunity in supervised learning. In Daniel D. Lee, Masashi Sugiyama, Ulrike von Luxburg, Isabelle Guyon, and Roman Garnett, editors,Advances in Neural Information Processing Systems 29: Annual Conference on Neural Infor...
2016
-
[30]
what data benefits my classifier?
Anshuman Chhabra, Peizhao Li, Prasant Mohapatra, and Hongfu Liu. "what data benefits my classifier?" enhancing model performance and interpretability through influence-based data selection. InThe Twelfth International Conference on Learning Representations, ICLR 2024, Vienna, ...
2024
-
[31]
Robust physical-world attacks on deep learning visual classification
Kevin Eykholt, Ivan Evtimov, Earlence Fernandes, Bo Li, Amir Rahmati, Chaowei Xiao, Atul Prakash, Tadayoshi Kohno, and Dawn Song. Robust physical-world attacks on deep learning visual classification. In2018 IEEE Conference on Computer Vision and Pattern Recognition, CVPR 2018,...
2018
-
[32]
It is all about data: A survey on the effects of data on adversarial robustness.ACM Comput
Peiyu Xiong, Michael Tegegn, Jaskeerat Singh Sarin, Shubhraneel Pal, and Julia Rubin. It is all about data: A survey on the effects of data on adversarial robustness.ACM Comput. Surv., 56(7):174:1–174:41, 2024. 3
2024
-
[33]
Goodfellow, Jonathon Shlens, and Christian Szegedy
Ian J. Goodfellow, Jonathon Shlens, and Christian Szegedy. Explaining and harnessing adver- sarial examples. In Yoshua Bengio and Yann LeCun, editors,3rd International Conference on Learning Representations, ICLR 2015, San Diego, CA, USA, May 7-9, 2015, Conference Track Procee...
2015
-
[34]
Towards deep learning models resistant to adversarial attacks
Aleksander Madry, Aleksandar Makelov, Ludwig Schmidt, Dimitris Tsipras, and Adrian Vladu. Towards deep learning models resistant to adversarial attacks. In6th International Conference on Learning Representations, ICLR 2018, Vancouver, BC, Canada, April 30 - May 3, 2018, Confer...
2018
-
[35]
Hannun, and Laurens van der Maaten
Chuan Guo, Tom Goldstein, Awni Y . Hannun, and Laurens van der Maaten. Certified data removal from machine learning models. InProceedings of the 37th International Conference on Machine Learning, ICML 2020, 13-18 July 2020, Virtual Event, volume 119 ofProceedings of Machine Le...
2020
-
[36]
Towards certified unlearning for deep neural networks
Binchi Zhang, Yushun Dong, Tianhao Wang, and Jundong Li. Towards certified unlearning for deep neural networks. InForty-first International Conference on Machine Learning, ICML 2024, Vienna, Austria, July 21-27, 2024. OpenReview.net, 2024. 3
2024
-
[37]
Efficient online unlearning via hessian-free recollection of individual data statistics.arXiv preprint arXiv:2404.01712, 2024
Xinbao Qiao, Meng Zhang, Ming Tang, and Ermin Wei. Efficient online unlearning via hessian-free recollection of individual data statistics.arXiv preprint arXiv:2404.01712, 2024. 3
2024 arXiv
-
[38]
Gurobi Optimizer Reference Manual, 2024
Gurobi Optimization, LLC. Gurobi Optimizer Reference Manual, 2024. 5
2024
-
[39]
Knowledge unlearning for mitigating privacy risks in language models
Joel Jang, Dongkeun Yoon, Sohee Yang, Sungmin Cha, Moontae Lee, Lajanugen Logeswaran, and Minjoon Seo. Knowledge unlearning for mitigating privacy risks in language models. In Anna Rogers, Jordan L. Boyd-Graber, and Naoaki Okazaki, editors,Proceedings of the 61st Annual Meetin...
2023
-
[40]
Large language model unlearning.CoRR, abs/2310.10683, 2023
Yuanshun Yao, Xiaojun Xu, and Yang Liu. Large language model unlearning.CoRR, abs/2310.10683, 2023. 5
2023 arXiv
-
[41]
Negative preference optimization: From catastrophic collapse to effective unlearning.CoRR, abs/2404.05868, 2024
Ruiqi Zhang, Licong Lin, Yu Bai, and Song Mei. Negative preference optimization: From catastrophic collapse to effective unlearning.CoRR, abs/2404.05868, 2024. 5
2024 arXiv
-
[42]
Eternal sunshine of the spotless net: Selective forgetting in deep networks
Aditya Golatkar, Alessandro Achille, and Stefano Soatto. Eternal sunshine of the spotless net: Selective forgetting in deep networks. In2020 IEEE/CVF Conference on Computer Vision and Pattern Recognition, CVPR 2020, Seattle, WA, USA, June 13-19, 2020, pages 9301–9309. Computer...
2020
-
[43]
A data-driven approach to predict the success of bank telemarketing.Decis
Sérgio Moro, Paulo Cortez, and Paulo Rita. A data-driven approach to predict the success of bank telemarketing.Decis. Support Syst., 62:22–31, 2014. 6
2014
-
[44]
Deep learning face attributes in the wild
Ziwei Liu, Ping Luo, Xiaogang Wang, and Xiaoou Tang. Deep learning face attributes in the wild. InProceedings of International Conference on Computer Vision (ICCV), December 2015. 6 12
2015
-
[45]
Machine learning suites for online toxicity detection.CoRR, abs/1810.01869,
David Noever. Machine learning suites for online toxicity detection.CoRR, abs/1810.01869,
-
[46]
Learning multiple layers of features from tiny images.(2009), 2009
Alex Krizhevsky, Geoffrey Hinton, et al. Learning multiple layers of features from tiny images.(2009), 2009. 6
2009
-
[47]
Smith, and Chiyuan Zhang
Weijia Shi, Jaechan Lee, Yangsibo Huang, Sadhika Malladi, Jieyu Zhao, Ari Holtzman, Daogao Liu, Luke Zettlemoyer, Noah A. Smith, and Chiyuan Zhang. MUSE: machine unlearning six-way evaluation for language models.CoRR, abs/2407.06460, 2024. 6
2024 arXiv
-
[48]
Forgetting outside the box: Scrubbing deep networks of information accessible from input-output observations
Aditya Golatkar, Alessandro Achille, and Stefano Soatto. Forgetting outside the box: Scrubbing deep networks of information accessible from input-output observations. In Andrea Vedaldi, Horst Bischof, Thomas Brox, and Jan-Michael Frahm, editors,Computer Vision - ECCV 2020 - 16...
2020
-
[49]
Chundawat, Ayush K
Vikram S. Chundawat, Ayush K. Tarun, Murari Mandal, and Mohan S. Kankanhalli. Can bad teaching induce forgetting? unlearning in deep networks using an incompetent teacher. In Brian Williams, Yiling Chen, and Jennifer Neville, editors,Thirty-Seventh AAAI Conference on Artificia...
2023
-
[50]
Deep residual learning for image recognition
Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. InProceedings of the IEEE conference on computer vision and pattern recognition, pages 770–778, 2016. 6
2016
-
[51]
What neural networks memorize and why: Discovering the long tail via influence estimation
Vitaly Feldman and Chiyuan Zhang. What neural networks memorize and why: Discovering the long tail via influence estimation. In Hugo Larochelle, Marc’Aurelio Ranzato, Raia Hadsell, Maria-Florina Balcan, and Hsuan-Tien Lin, editors,Advances in Neural Information Processing Syst...
2020
-
[52]
SOUL: unlocking the power of second-order optimization for LLM unlearning
Jinghan Jia, Yihua Zhang, Yimeng Zhang, Jiancheng Liu, Bharat Runwal, James Diffenderfer, Bhavya Kailkhura, and Sijia Liu. SOUL: unlocking the power of second-order optimization for LLM unlearning. In Yaser Al-Onaizan, Mohit Bansal, and Yun-Nung Chen, editors,Proceedings of th...
2024
-
[53]
Correcting large language model behavior via influence function, 2024
Han Zhang, Zhuo Zhang, Yi Zhang, Yuanzhao Zhai, Hanyang Peng, Yu Lei, Yue Yu, Hui Wang, Bin Liang, Lin Gui, and Ruifeng Xu. Correcting large language model behavior via influence function, 2024. 7
2024
-
[54]
The proof and measurement of association between two things
Charles Spearman. The proof and measurement of association between two things. 1961. 7
1961
-
[55]
Correlation and causation.Journal of agricultural research, 20(7):557–585,
Sewall Wright. Correlation and causation.Journal of agricultural research, 20(7):557–585,
-
[1921]
15 A.2 Analytical Solution of Problem 6
7 13 Contents of Appendix A Technique Details 15 A.1 Influence Function . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15 A.2 Analytical Solution of Problem 6 . . . . . . . . . . . . . . . . . . . . . . . . . . . 17 A.3 Weighted Machine Unlearning Algorith...
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.