REVIEW 5 major objections 4 minor 107 references
A two-stage unlearning pipeline removes deleted user–item interactions from trained recommenders while keeping recommendation quality near retrained levels, at a fraction of the retraining cost.
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 · deepseek-v4-flash
2026-08-02 09:22 UTC pith:AQ5KQRLI
load-bearing objection A practical two-stage unlearning recipe for recommenders, but the curvature-aware theory rests on an unmeasured assumption and the empirical story is single-run synthetic; worth refereeing with the right asks. the 5 major comments →
Obliviate: Efficient Unlearning in Recommender Systems
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
Core claim
Obliviate's core discovery is that the optimization shift induced by deleting a set of interactions can be approximated as θ*_{-S} ≈ θ0 − H^{-1} g_S, so unlearning becomes a single second-order correction rather than a re-optimization. Because the full Hessian is intractable, the paper reuses the diagonal preconditioner already computed by Adam during training, bH = diag(sqrt(v_hat) + ε), to approximate H^{-1}; the downdate is then computed per-coordinate as −(g_S)_j / (sqrt(v_hat_j) + ε), applied only to the most affected user/item embedding blocks, and compressed into a rank-r adapter via truncated SVD. A second stage, Locality-Aware Calibration, freezes the backbone and optimizes only the
What carries the argument
The load-bearing identity is Eq. (5): θ*_{-S} ≈ θ0 − H^{-1} g_S, the second-order unlearning approximation. It says the difference between a model trained on the full data and one retrained without the deletion set is, to first order in the parameter shift, the deletion gradient g_S scaled by the inverse Hessian H. The practical machinery is diagonal preconditioning: Obliviate reuses Adam's per-coordinate second-moment estimates to form bH = diag(sqrt(v_hat) + ε), turning the Newton step into per-coordinate scaling; a truncated SVD projects the resulting downdate onto a low-rank adapter, making the update modular and reversible; and the witness set S ∪ Neg(S) ∪ R feeds a BPR unlearning loss
Load-bearing premise
Everything rests on the claim that Adam's second-moment statistics can stand in for the true curvature of the loss; if this diagonal surrogate is not accurate, the Newton-style unlearning update is just a scaled gradient step and the guarantee that the unlearned model matches retraining falls apart.
What would settle it
Compute the actual relative preconditioner error ||I − bH^{-1}H||_2 for a small trained recommender (for example, MF-BPR on ML-1M) by forming the exact Hessian of the full-data objective; if the error is close to or greater than 1 on the subspace touched by the deletion set, the paper's distance-to-retrain bound is vacuous. Equivalently, compare Obliviate's final parameters with a truly retrained model's parameters on a real, non-synthetic deletion set: if the Euclidean distance grows much faster than the bound predicts, or if a membership-inference probe can still detect deleted interactions,
If this is right
- Deletion requests become cheap enough to honor repeatedly: unlearning runs in seconds (about 20 seconds on ML-1M with MF-BPR) versus hundreds of seconds for retraining, so frequent right-to-be-forgotten requests no longer require a retraining queue.
- Because updates are confined to low-rank adapters on a frozen backbone, unlearning is modular and reversible, and repeated deletion requests could be composed by stacking or resetting adapters without touching the base model.
- The method is demonstrated for deletion ratios as high as 20% of users and for both MF-BPR and graph-based LightGCN, suggesting it generalizes across common recommender architectures and sparse or dense datasets.
- Unlearning completeness is visible in ranking behavior: after Obliviate, deleted interactions are demoted below sampled negatives at higher rates than prior approximate unlearning methods, close to what exact retraining would produce.
- The synthetic-deletion evaluation protocol (injecting low-preference interactions as the deletion set) gives the community a way to measure unlearning quality without confounding it with distribution shift, making baseline comparisons cleaner.
Where Pith is reading between the lines
- If Adam's second-moment surrogate is as accurate as assumed, the same mechanism could transfer to other models trained with Adam: any optimizer state that estimates per-coordinate gradient variance provides a free curvature proxy for unlearning. A direct measurement of the relative preconditioner error on small models would tell whether the transfer is safe.
- Because the paper evaluates on synthetic deletions to avoid confounding, a natural next test is real user requests, where removing genuine preferences also shifts the evaluation distribution; completeness should still hold, but utility should be compared against a model retrained on the same deleted data rather than against the original model.
- The BPR demotion objective certifies completeness in ranking terms, not in parameter or membership terms; a stronger privacy probe, such as membership inference or canary-parameter checking, could reveal residual traces that the Demotion Rate metric misses.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes Obliviate, a two-stage unlearning framework for recommender systems. Stage I (LUA) computes a deletion-set gradient, applies a curvature-scaled downdate using a diagonal Adam second-moment proxy, and projects the resulting parameter shift onto low-rank adapters. Stage II (LAC) calibrates only the adapter parameters, using a BPR-style loss on the deleted set plus a distillation loss on a retained buffer. Experiments on ML-1M, Amazon, and Yelp with MF-BPR and LightGCN report utility close to or above the original model, high post-unlearning demotion rates, and large speedups over full retraining.
Significance. If the central approximation is valid, Obliviate is a practically appealing approach: it keeps the backbone frozen, makes unlearning modular and reversible, and avoids full Hessian computation. The paper also provides a detailed theoretical appendix with explicit error decompositions and an honest limitation statement about the Adam-based curvature proxy. However, the main theoretical guarantee rests on an unmeasured and questionable assumption about the preconditioner, and the empirical evaluation relies entirely on a synthetic deletion protocol with no error bars. The contribution is therefore significant only conditionally on those points being resolved.
major comments (5)
- [Appendix K, Assumption K.4 and Eq. (7)] Theorem K.12's distance-to-retrain bound requires ||I - bH^{-1}H||_2 <= eps_H < 1, where bH is the Adam second-moment diagonal. The paper never measures this quantity or checks Assumption H.6. For MF-BPR and LightGCN the Hessian is not diagonal dominant: it contains off-diagonal user-item blocks, and in LightGCN the graph propagation couples many coordinates. Adam's v_hat is a variance estimate, not a curvature estimate, so the claimed 'curvature-aware' character of the downdate is unsupported. If K.4 fails, the update is just a scaled gradient step and the end-to-end bound collapses. Please report the empirical value of ||I - bH^{-1}H|| on the actual models/datasets, and if it does not satisfy the assumption, weaken the theoretical claim or replace the proxy.
- [§3.2 and Appendix F] All experiments are run under a synthetic deletion protocol in which the deletion set consists of injected low-preference interactions. This is a legitimate robustness check, but it does not demonstrate unlearning of genuine user interactions, which is the stated GDPR/CCPA motivation. Removing synthetic noise may improve utility, while removing real interactions changes the data distribution. The abstract's claim of 'deletion ratios as high as 20% of the data' is also inconsistent with the experiments, which delete interactions from 20% of users. Please add at least one real-deletion experiment, state the actual fraction of interactions deleted, and scope the claims accordingly.
- [Tables 1 and 2] For a fixed backbone and dataset, the retrained model should be a common baseline, yet IFRU's Retrained row on ML-1M MF-BPR reports R@10 = 0.1179 while RRL and Obliviate report 0.1265. Table 2 likewise reports different retraining times for the same backbone/data condition (e.g., 975s for IFRU vs 533.5s for Obliviate on ML-1M MF-BPR). This suggests the methods were not compared against a consistent retrained checkpoint, making the utility and speedup comparisons hard to interpret. Please use one retrained model per backbone/data set for all methods, or clearly justify why separate retrained rows are method-specific.
- [Eq. (16) and Eqs. (13)–(14)] The completeness metric, Demotion Rate, is the same ranking objective that LAC optimizes with its BPR unlearning loss. Reporting it as the main evidence of forgetting is therefore circular: the method is evaluated on a quantity it directly trains. In addition, Algorithm 1 and the witness set in Eq. (12) use the deleted set S after unlearning, which conflicts with the premise that the data has been erased. Please provide an independent completeness check (e.g., parameter distance to retraining, membership inference, or score behavior on held-out probes not used in calibration) and explicitly justify or drop the post-deletion use of S.
- [Tables 1–3 and Fig. 3] No standard deviations, multiple seeds, or statistical tests are reported. Many utility differences are extremely small — in Table 3 the ablation differences at R@20 are around 0.001–0.003 — so the 'consistent drops/gains' claims cannot be evaluated. Please report mean±std over at least five seeds and, if possible, paired significance tests. This is necessary to support the empirical contribution.
minor comments (4)
- [§2.1.1] The text 'J−S(θ0) = −gs' should read '∇J−S(θ0) = −g_S'.
- [Table 1] For SISA and RecEraser, the Retrained row is all dashes. It would be clearer to state explicitly that no full-retrained comparator is reported for these baselines, or to add one.
- [Abstract vs. §3.2] The abstract says 'deletion ratios (as high as 20% of the data)' while the experiments inject 80% of interaction counts for 20% of users. Please state the true percentage of total deleted interactions and use consistent terminology.
- [Appendix H.4.2] The proof of Theorem H.5 is essentially the same as that of Theorem H.1; consider condensing to avoid repetition.
Circularity Check
Completeness is measured by the exact BPR objective LAC optimizes; the parameter derivation itself is not circular.
specific steps
-
fitted input called prediction
[Section G, Eq. (16); Section 2.2.2, Eq. (14); Tables 6 and 7]
"DemotionRate = Pr[s(u, idel)< s(u, ineg)].(16) ... This metric directly reflects the retraining objective. ... is naturally aligned with the BPR objective used during calibration."
LAC's unlearning loss is ℓ_BPR(u,i+,i−) = −log σ(s(u,i−;θ(ϕ))−s(u,i+;θ(ϕ))) with i+ a deleted item and i− a sampled negative. Minimizing this loss directly increases Pr[s(u,i−)>s(u,i+)], which is exactly the Demotion Rate of Eq. (16). Thus the post-unlearning Demotion Rate reported as evidence of forgetting is the calibration objective evaluated on the deletion set, not an independent measure of closeness to retraining. The paper even states the metric is 'naturally aligned with the BPR objective used during calibration', so the completeness improvement is forced by construction.
full rationale
The core parameter-update derivation is not circular: Eq. (5) is the standard influence-function/Newton downdate derived from the deletion gradient g_S and the local Hessian, not fitted to the retrained optimum θ*_{−S}; LUA and LAC are validated against external retrained models and prior baselines on Recall/NDCG. The circularity is confined to the completeness evaluation: Demotion Rate (Eq. 16) measures exactly the ranking event that LAC's BPR loss (Eq. 14) is trained to maximize on S∪Neg(S). Therefore the large before/after Demotion Rate gaps in Tables 6–7 are largely a restatement of the calibration objective, not evidence that the model matches the retrained model's ranking behavior. The paper candidly notes this alignment. Other limitations, such as Assumption K.4 on the Adam-based curvature proxy being unverified, are correctness/robustness concerns rather than circularity. Overall, the framework has independent content and the utility comparisons are externally grounded, but the headline completeness claim is partially circular, giving a score of 6.
Axiom & Free-Parameter Ledger
free parameters (5)
- rank r of low-rank adapter =
4 on ML-1M and Amazon, 6 on Yelp
- LAC calibration steps T =
160/110/200 (MF-BPR) and 180/150/250 (LightGCN) on ML-1M/Amazon/Yelp
- retained buffer fraction =
10%
- loss weights λ_unlearn, λ_distill, λ_reg =
not reported
- number of hard negatives per deleted interaction =
not specified
axioms (6)
- domain assumption J−S is locally strongly convex near θ0 (Assumption K.1)
- ad hoc to paper Adam second-moment diagonal approximates the Hessian diagonal up to scaling (Assumption H.6)
- ad hoc to paper Preconditioner relative accuracy ||I − bH^{-1}H|| ≤ ε_H (Assumption K.4)
- domain assumption Deletion curvature is small: ||∇^2J_S(θ0)|| ≤ δ (Assumption K.3)
- domain assumption Score function is Lipschitz in parameters (Assumption K.16)
- domain assumption Synthetic low-preference deletions are a valid proxy for real deletion requests (Appendix F)
read the original abstract
Machine unlearning is becoming increasingly critical in the context of data privacy regulations, particularly for recommendation systems that are directly trained on user interaction data. The goal of this work is to remove requested interaction data and their downstream influence from trained model while preserving recommendation quality, and to do so without incurring the substantial computational cost of full retraining. Existing approaches exhibit several limitations, including limited unlearning completeness and degradation in recommendation performance, while having substantial computational overhead. In this paper, we propose Obliviate, an efficient two-stage unlearning framework for recommender systems that achieves high unlearning completeness while maintaining good utility. In the first stage, we introduce a Low-Rank Unlearning Adapter (LUA), which employs a lightweight Hessian proxy to enable curvature-aware and efficient unlearning through localized low-rank adapters rather than full parameters. In the second stage, we propose Locality-Aware Calibration (LAC), a lightweight refinement stage that updates only the adapter parameters to improve the performance by enforcing unlearning via ranking-based objectives while preserving utility through knowledge distillation. Extensive empirical evaluations demonstrate that Obliviate achieves high level of forgetting with minimal loss in recommendation quality and at significantly reduced computational cost, offering a practical and scalable solution for large-scale recommender systems.
Figures
Reference graph
Works this paper leans on
-
[1]
Matrix factorization model in collaborative filtering algorithms: A survey
Bokde, D., Girase, S., and Mukhopadhyay, D. Matrix factorization model in collaborative filtering algorithms: A survey. Procedia Computer Science, 49: 0 136--146, 2015
2015
-
[2]
Bonnans, J. F. and Shapiro, A. Perturbation Analysis of Optimization Problems. Springer, 2000
2000
-
[3]
A., Jia, H., Travers, A., Zhang, B., Lie, D., and Papernot, N
Bourtoule, L., Chandrasekaran, V., Choquette-Choo, C. A., Jia, H., Travers, A., Zhang, B., Lie, D., and Papernot, N. Machine unlearning. In 2021 IEEE symposium on security and privacy (SP), pp.\ 141--159. IEEE, 2021
2021
-
[5]
Recommendation unlearning
Chen, C., Sun, F., Zhang, M., and Ding, B. Recommendation unlearning. In Proceedings of the ACM Web Conference 2022, pp.\ 1--10, 2022
2022
-
[6]
Cure4rec: A benchmark for recommendation unlearning with deeper influence
Chen, C., Zhang, J., Zhang, Y., Zhang, L., Lyu, L., Li, Y., Gong, B., and Yan, C. Cure4rec: A benchmark for recommendation unlearning with deeper influence. Advances in Neural Information Processing Systems, 37: 0 99128--99144, 2024
2024
-
[7]
Wide & deep learning for recommender systems
Cheng, H.-T., Koc, L., Harmsen, J., Shaked, T., Chandra, T., Aradhye, H., Anderson, G., Corrado, G., Chai, W., Ispir, M., et al. Wide & deep learning for recommender systems. In Proceedings of the 1st workshop on deep learning for recommender systems, pp.\ 7--10, 2016
2016
-
[8]
Deep neural networks for youtube recommendations
Covington, P., Adams, J., and Sargin, E. Deep neural networks for youtube recommendations. In Proceedings of the 10th ACM conference on recommender systems, pp.\ 191--198, 2016
2016
-
[9]
Efficient and adaptive recommendation unlearning: A guided filtering framework to erase outdated preferences
Dang, Y., Liu, Y., Yang, E., Guo, G., Jiang, L., Zhao, J., et al. Efficient and adaptive recommendation unlearning: A guided filtering framework to erase outdated preferences. ACM Transactions on Information Systems, 2025
2025
-
[10]
Enhancing privacy in recommender systems through differential privacy techniques
Di Fazio, A. Enhancing privacy in recommender systems through differential privacy techniques. In Proceedings of the 18th ACM Conference on Recommender Systems, pp.\ 1348--1352, 2024
2024
-
[11]
Measuring interaction-level unlearning difficulty for collaborative filtering
Dou, H., Lian, T., and Xin, X. Measuring interaction-level unlearning difficulty for collaborative filtering. In Proceedings of the Nineteenth ACM Conference on Recommender Systems, 2025
2025
-
[12]
Generalized low-rank update: Model parameter bounds for low-rank training data modifications
Hanada, H., Hashimoto, N., Taji, K., and Takeuchi, I. Generalized low-rank update: Model parameter bounds for low-rank training data modifications. Neural Computation, 35 0 (12): 0 1970--2005, 2023
1970
-
[13]
Hansen, P. C. The truncated svd as a method for regularization. BIT Numerical Mathematics, 27 0 (4): 0 534--553, 1987
1987
-
[14]
Neural collaborative filtering
He, X., Liao, L., Zhang, H., Nie, L., Hu, X., and Chua, T.-S. Neural collaborative filtering. In Proceedings of the 26th international conference on world wide web, pp.\ 173--182, 2017
2017
-
[15]
Lightgcn: Simplifying and powering graph convolution network for recommendation
He, X., Deng, K., Wang, X., Li, Y., Zhang, Y., and Wang, M. Lightgcn: Simplifying and powering graph convolution network for recommendation. In Proceedings of the 43rd International ACM SIGIR conference on research and development in Information Retrieval, pp.\ 639--648, 2020
2020
-
[16]
S., Bensaali, F., Amira, A., and Alazab, M
Himeur, Y., Sohail, S. S., Bensaali, F., Amira, A., and Alazab, M. Latest trends of security and privacy in recommender systems: a comprehensive review and future perspectives. Computers & Security, 118: 0 102746, 2022
2022
-
[17]
Lora: Low-rank adaptation of large language models
Hu, E., Shen, Y., Wallis, P., Allen-Zhu, Z., Li, Y., Wang, S., and Chen, W. Lora: Low-rank adaptation of large language models. In International Conference on Learning Representations (ICLR), 2022
2022
-
[18]
M., and Jordan, M
Jin, C., Ge, R., Netrapalli, P., Kakade, S. M., and Jordan, M. I. How to escape saddle points efficiently. In International conference on machine learning, pp.\ 1724--1732. PMLR, 2017
2017
-
[20]
Koh, P. W. and Liang, P. Understanding black-box predictions via influence functions. In International Conference on Machine Learning (ICML), 2017
2017
-
[21]
Ultrare: Enhancing receraser for recommendation unlearning via error decomposition
Li, Y., Chen, C., Zhang, Y., Liu, W., Lyu, L., Zheng, X., Meng, D., and Wang, J. Ultrare: Enhancing receraser for recommendation unlearning via error decomposition. Advances in Neural Information Processing Systems, 36: 0 12611--12625, 2023 a
2023
-
[22]
Selective and collaborative influence function for efficient recommendation unlearning
Li, Y., Chen, C., Zheng, X., Zhang, Y., Gong, B., and Wang, J. Selective and collaborative influence function for efficient recommendation unlearning. Expert Systems with Applications, 234: 0 121025, 2023 b . arXiv preprint arXiv:2304.10199
Pith/arXiv arXiv 2023
-
[23]
Recommendation unlearning via matrix correction
Liu, J., Li, D., Gu, H., Lu, T., Wu, J., Zhang, P., and Shang, L. Recommendation unlearning via matrix correction. arXiv preprint, 2023. arXiv:2307.15960
Pith/arXiv arXiv 2023
-
[25]
Datasets for large language models: A comprehensive survey
Liu, Y., Cao, J., Liu, C., Ding, K., and Jin, L. Datasets for large language models: A comprehensive survey. Artificial Intelligence Review, 58 0 (12): 0 403, 2025
2025
-
[27]
The eu proposal for a general data protection regulation and the roots of the ‘right to be forgotten’
Mantelero, A. The eu proposal for a general data protection regulation and the roots of the ‘right to be forgotten’. Computer Law & Security Review, 29 0 (3): 0 229--235, 2013
2013
-
[28]
Piecewise strong convexity of neural networks
Milne, T. Piecewise strong convexity of neural networks. Advances in neural information processing systems, 32, 2019
2019
-
[29]
and Salakhutdinov, R
Mnih, A. and Salakhutdinov, R. R. Probabilistic matrix factorization. Advances in neural information processing systems, 20, 2007
2007
-
[30]
U., Qiu, S., Saqib, M., Anwar, S., Usman, M., Akhtar, N., Barnes, N., and Mian, A
Naveed, H., Khan, A. U., Qiu, S., Saqib, M., Anwar, S., Usman, M., Akhtar, N., Barnes, N., and Mian, A. A comprehensive overview of large language models. ACM Transactions on Intelligent Systems and Technology, 16 0 (5): 0 1--72, 2025
2025
-
[31]
T., Huynh, T
Nguyen, T. T., Huynh, T. T., Ren, Z., Nguyen, P. L., Liew, A. W.-C., Yin, H., and Nguyen, Q. V. H. A survey of machine unlearning. ACM Transactions on Intelligent Systems and Technology, 16 0 (5): 0 1--46, 2025
2025
-
[32]
Pardau, S. L. The california consumer privacy act: Towards a european-style privacy regime in the united states. J. Tech. L. & Pol'y, 23: 0 68, 2018
2018
-
[33]
and So, A
Pun, Y.-M. and So, A. M.-C. Local strong convexity of source localization and error bound for target tracking under time-of-arrival measurements. IEEE Transactions on Signal Processing, 70: 0 190--201, 2021
2021
-
[35]
Forget me now: Fast and exact unlearning in neighborhood-based recommendation
Schelter, S., Ariannezhad, M., and de Rijke, M. Forget me now: Fast and exact unlearning in neighborhood-based recommendation. In Proceedings of the 46th International ACM SIGIR Conference on Research and Development in Information Retrieval, pp.\ 2011--2015, 2023
2011
-
[36]
Neural graph collaborative filtering
Wang, X., He, X., Wang, M., Feng, F., and Chua, T.-S. Neural graph collaborative filtering. In Proceedings of the 42nd international ACM SIGIR conference on Research and development in Information Retrieval, pp.\ 165--174, 2019
2019
-
[37]
Contemporary recommendation systems on big data and their applications: A survey
Xia, Z., Sun, A., Xu, J., Peng, Y., Ma, R., and Cheng, M. Contemporary recommendation systems on big data and their applications: A survey. IEEE access, 12: 0 196914--196928, 2024
2024
-
[38]
Netflix and forget: Efficient and exact machine unlearning from bi-linear recommendations
Xu, M., Sun, J., Yang, X., Yao, K., and Wang, C. Netflix and forget: Efficient and exact machine unlearning from bi-linear recommendations. arXiv preprint, 2023. arXiv:2302.06676
Pith/arXiv arXiv 2023
-
[39]
L., and Leskovec, J
Ying, R., He, R., Chen, K., Eksombatchai, P., Hamilton, W. L., and Leskovec, J. Graph convolutional neural networks for web-scale recommender systems. In Proceedings of the 24th ACM SIGKDD international conference on knowledge discovery & data mining, pp.\ 974--983, 2018
2018
-
[40]
Rrl: Recommendation reverse learning
You, X., Xu, J., Zhang, M., Gao, Z., and Yang, M. Rrl: Recommendation reverse learning. In Proceedings of the AAAI conference on artificial intelligence, volume 38, pp.\ 9296--9304, 2024
2024
-
[41]
Closed-form machine unlearning for matrix factorization
Zhang, S., Lou, J., Xiong, L., Zhang, X., and Liu, J. Closed-form machine unlearning for matrix factorization. In Proceedings of the 32nd ACM International Conference on Information and Knowledge Management, pp.\ 1--10, 2023
2023
-
[42]
Recommendation unlearning via influence function
Zhang, Y., Hu, Z., Bai, Y., Wu, J., Wang, Q., and Feng, F. Recommendation unlearning via influence function. ACM Transactions on Recommender Systems, 3 0 (2): 0 1--23, 2024
2024
-
[43]
What makes unlearning hard and what to do about it
Zhao, K., Kurmanji, M., Barbulescu, G.-O., Triantafillou, E., and Triantafillou, P. What makes unlearning hard and what to do about it. Advances in Neural Information Processing Systems, 37: 0 12293--12333, 2024
2024
-
[44]
Sinha and M
Y. Sinha and M. Mandal and M. Kankanhalli , title =. IEEE Transactions on Pattern Analysis and Machine Intelligence , year =
-
[45]
arXiv preprint arXiv:1205.2618 , year=
BPR: Bayesian personalized ranking from implicit feedback , author=. arXiv preprint arXiv:1205.2618 , year=
-
[47]
arXiv preprint arXiv:1412.6980 , year=
Adam: A method for stochastic optimization , author=. arXiv preprint arXiv:1412.6980 , year=
-
[48]
Proceedings of the 42nd international ACM SIGIR conference on Research and development in Information Retrieval , pages=
Neural graph collaborative filtering , author=. Proceedings of the 42nd international ACM SIGIR conference on Research and development in Information Retrieval , pages=
-
[49]
Proceedings of the 26th international conference on world wide web , pages=
Neural collaborative filtering , author=. Proceedings of the 26th international conference on world wide web , pages=
-
[50]
Advances in neural information processing systems , volume=
Probabilistic matrix factorization , author=. Advances in neural information processing systems , volume=
-
[51]
Procedia Computer Science , volume=
Matrix factorization model in collaborative filtering algorithms: A survey , author=. Procedia Computer Science , volume=. 2015 , publisher=
2015
-
[52]
Proceedings of the 24th ACM SIGKDD international conference on knowledge discovery & data mining , pages=
Graph convolutional neural networks for web-scale recommender systems , author=. Proceedings of the 24th ACM SIGKDD international conference on knowledge discovery & data mining , pages=
-
[53]
Proceedings of the 43rd International ACM SIGIR conference on research and development in Information Retrieval , pages=
Lightgcn: Simplifying and powering graph convolution network for recommendation , author=. Proceedings of the 43rd International ACM SIGIR conference on research and development in Information Retrieval , pages=
-
[54]
Li and C
Y. Li and C. Chen and X. Zheng and Y. Zhang and B. Gong and J. Wang , title =. Expert Systems with Applications , year =
-
[55]
Yang and J
M. Yang and J. Chen and Y. Zhang and J. Liu and J. Zhang and Q. Ma and others , title =. arXiv preprint , year =
-
[56]
Li and X
Y. Li and X. Feng and C. Chen and Q. Yang , title =. arXiv preprint , year =
-
[57]
Sachdeva and H
B. Sachdeva and H. Rathee and Sristi and A. Sharma and W. Wydmański , title =. Proceedings of the 7th International Conference on Innovative Computing and Communication , year =
-
[58]
Dang and Y
Y. Dang and Y. Liu and E. Yang and G. Guo and L. Jiang and J. Zhao and others , title =. ACM Transactions on Information Systems , year =
-
[59]
Said and Y
A. Said and Y. Zhao and T. Derr and M. Shabbir and W. Abbas and X. Koutsoukos , title =. arXiv preprint , year =
-
[60]
Liu and D
J. Liu and D. Li and H. Gu and T. Lu and J. Wu and P. Zhang and L. Shang , title =. arXiv preprint , year =
-
[61]
Chen and H
J. Chen and H. Zhang and H. Li and Y. Li , title =. Chinese Journal of Electronics , year =
-
[62]
Li and C
Y. Li and C. Chen and X. Zheng and J. Liu and J. Wang , title =. Knowledge-Based Systems , year =
-
[63]
Chen and F
C. Chen and F. Sun and M. Zhang and B. Ding , title =. Proceedings of the ACM Web Conference 2022 , year =
2022
-
[64]
Dou and T
H. Dou and T. Lian and X. Xin , title =. Proceedings of the Nineteenth ACM Conference on Recommender Systems , year =
-
[65]
Zhang and W
C. Zhang and W. Wang and Z. Tian and S. Yu , title =. IEEE Transactions on Information Forensics and Security , year =
-
[66]
Hao and F
Y. Hao and F. Zhuang and D. Wang and G. Liu and V. S. Sheng and P. Zhao , title =. Proceedings of the 33rd ACM International Conference on Information and Knowledge Management (CIKM 2024) , year =
2024
-
[67]
Chen and L
G. Chen and L. Xia and C. Huang , title =. arXiv preprint , year =
-
[68]
Advances in Neural Information Processing Systems , volume=
Ultrare: Enhancing receraser for recommendation unlearning via error decomposition , author=. Advances in Neural Information Processing Systems , volume=
-
[69]
Computers & Security , volume=
Latest trends of security and privacy in recommender systems: a comprehensive review and future perspectives , author=. Computers & Security , volume=. 2022 , publisher=
2022
-
[70]
Advances in Neural Information Processing Systems , volume=
What makes unlearning hard and what to do about it , author=. Advances in Neural Information Processing Systems , volume=
-
[71]
2021 IEEE symposium on security and privacy (SP) , pages=
Machine unlearning , author=. 2021 IEEE symposium on security and privacy (SP) , pages=. 2021 , organization=
2021
-
[72]
ACM Transactions on Intelligent Systems and Technology , volume=
A survey of machine unlearning , author=. ACM Transactions on Intelligent Systems and Technology , volume=. 2025 , publisher=
2025
-
[73]
Proceedings of the 18th ACM Conference on Recommender Systems , pages=
Enhancing privacy in recommender systems through differential privacy techniques , author=. Proceedings of the 18th ACM Conference on Recommender Systems , pages=
-
[74]
IEEE access , volume=
Contemporary recommendation systems on big data and their applications: A survey , author=. IEEE access , volume=. 2024 , publisher=
2024
-
[75]
Proceedings of the 10th ACM conference on recommender systems , pages=
Deep neural networks for youtube recommendations , author=. Proceedings of the 10th ACM conference on recommender systems , pages=
-
[76]
Proceedings of the 1st workshop on deep learning for recommender systems , pages=
Wide & deep learning for recommender systems , author=. Proceedings of the 1st workshop on deep learning for recommender systems , pages=
-
[77]
ACM Transactions on Intelligent Systems and Technology , volume=
A comprehensive overview of large language models , author=. ACM Transactions on Intelligent Systems and Technology , volume=. 2025 , publisher=
2025
-
[78]
Artificial Intelligence Review , volume=
Datasets for large language models: A comprehensive survey , author=. Artificial Intelligence Review , volume=. 2025 , publisher=
2025
-
[79]
Li and E
Y. Li and E. Yang and W. Pan and Q. Yang and Z. Ming , title =. ACM Transactions on Intelligent Systems and Technology , year =
-
[80]
Hu and Y
Z. Hu and Y. Zhang and M. Xiao and W. Wang and F. Feng and X. He , title =. IEEE Transactions on Information Forensics and Security , year =
-
[81]
Zhang and B
H. Zhang and B. Wu and X. Yang and X. Yuan and X. Liu and X. Yi , title =. Proceedings of the ACM Web Conference 2025 , year =
2025
-
[82]
Liu and J
W. Liu and J. Wan and X. Wang and W. Zhang and D. Zhang and H. Li , title =. arXiv preprint , year =
-
[83]
Chen and Y
C. Chen and Y. Zhang and Y. Li and J. Wang and L. Qi and X. Xu and X. Zheng and J. Yin , title =. ACM Transactions on Information Systems , year =
-
[84]
B. L. Wang and S. Schelter , title =. arXiv preprint , year =
-
[85]
T. T. Huynh and T. B. Nguyen and T. T. Nguyen and P. L. Nguyen and Q. Yang , title =. ACM Transactions on Intelligent Systems and Technology , year =
-
[86]
Li and C
N. Li and C. Zhou and Y. Gao and H. Chen and Z. Zhang and Y. Shui , title =. IEEE Transactions on Neural Networks and Learning Systems , year =
discussion (0)
Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.