Pith. sign in

REVIEW 5 major objections 7 minor 1 cited by

Toward Scalable Graph Unlearning: A Node Influence Maximization based Approach

T0 review · 5 major / 7 minor · reviewed 2026-08-10 · deepseek-v4-flash

Pith's one-line read Graph unlearning works better when the nodes to scrub are chosen by influence scores from the trained model's own propagation, rather than by local neighborhood.

desk verdict A useful plug-and-play HIE selector for graph unlearning with a heuristic core; solid experiments, but the influence measure is asserted and the algorithm/definition mismatch needs fixing. read the letter →

arxiv 2501.11823 v1 pith:4BQG55S2 submitted 2025-01-21 cs.LG cs.AIcs.DBcs.SI

classification cs.LGcs.AIcs.DBcs.SI
keywords graphunlearningnodeinfluencemaximizationhigh-influenceentityselectiondecoupledneuralnetworksfunctionentity-specificfine-tuningforgettingandreasoningtrade-offscalablelearning
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

The paper claims that the nodes a graph-unlearning request must scrub are rarely just the deleted entity's local neighborhood; gradient-driven training entangles many other nodes, often same-class nodes far away. It proposes Node Influence Maximization (NIM), a plug-and-play method that measures how strongly each remaining node was influenced by the unlearning entities during training, treating those entities as seeds in an influence-propagation model. NIM's influence scores come from the already-trained model's propagated features and predictions, so it runs offline before unlearning and can be attached to most existing graph unlearning methods. On top of that, the paper introduces Scalable Graph Unlearning (SGU), which fine-tunes the model only on the deleted entities and the selected high-influence entities with custom forgetting and reasoning losses. On 14 datasets, including the 111-million-node ogbn-papers100M, the claimed result is that NIM improves forgetting for most baseline methods while SGU matches or beats state-of-the-art unlearning quality at scale.

What carries the argument

The carrier is a decoupled influence propagation model (Eq. 4) that treats the GNN's weight-free propagation operator $P$ (SGC-style $k$-step propagation, GBP weighting, GAMLP attention, and similar formulas) as a social-influence diffusion process, with the unlearning entities as the seed set $S$. Topology influence $I_t$ is the $\ell^1$-norm of the expected Jacobian of propagated features, $\partial \tilde{X}^{(k)}_v / \partial \tilde{X}^{(0)}_u$; feature influence $I_f$ is the $\ell^1$-norm of the expected Jacobian of predictions, $\partial \tilde{Y}^{(k)}_v / \partial \tilde{Y}^{(0)}_u$. The two are normalized into a random-walk interpretation (Eq. 7) and summed, and nodes whose maximum influence from $S$ exceeds a threshold $\theta$ are activated as high-influence entities (Eq. 8), with budget $B$ controlling how many are selected. The second mechanism is entity-specific fine-tuning: label-shuffled cross-entropy on unlearning entities, prototype-based embedding forgetting on unlearning entities, contrastive loss on high-influence entities against same-label positives and unlearning-entity negatives, plus an L2/KL memory-based reasoning loss; the scalar $\lambda$ balances forgetting against reasoning.

What would settle it

Train a GNN on a graph, pick an unlearning set, and fully retrain from scratch without those entities; define ground-truth high-influence entities as the nodes whose predictions change most between the original and retrained models. If NIM's selected set overlaps with this ground truth no better than the $L$-hop neighborhood does, the measure fails its core purpose; the paper currently reports membership-inference improvements, not this direct overlap check against retraining.

Watch

Extended reading notes

Core claim

The paper's central discovery is that high-influence entity selection is the bottleneck in learning-based graph unlearning: existing methods take the $L$-hop neighborhood of the unlearning entity, which misses same-label nodes reached by similar gradients and includes nearby nodes that carry little signal. The paper claims that a node's influence can be quantified directly from the decoupled propagation operator of the trained GNN: the $\ell^1$-norm of the Jacobian of propagated features (topology influence) plus the $\ell^1$-norm of the Jacobian of model predictions (feature influence). Summing these gives a fine-grained influence score, and nodes whose maximum influence from the unlearning set exceeds a threshold $\theta$ form the high-influence entities. Replacing neighborhood selection with this influence measure lowers membership-inference AUC toward 0.5 for five high-influence-based graph unlearning baselines, and the fine-tuning framework built on it reaches state-of-the-art prediction on non-unlearning entities while remaining efficient on billion-scale graphs.

Load-bearing premise

The load-bearing premise is that the already-trained model's propagation and predictions can be read like an influence map, specifically that the sensitivity of each node's propagated features and predictions to those of the deleted entity reveals which nodes were actually entangled with that entity during gradient-driven training.

Editorial extensions

If this is right

  • Any high-influence-based graph unlearning method (the paper lists CGU, GIF, D2DGN, GNNDelete, and MEGU) can drop in NIM as a pre-processing step and lower membership-inference leakage, with reported improvements up to about 5.7 percentage points.
  • Unlearning can scale to graphs with over 100 million nodes because NIM runs offline on precomputed propagated features, and fine-tuning touches only the unlearning entities plus the selected high-influence entities.
  • The trade-off between forgetting and reasoning is controllable through the budget $B$, threshold $\theta$, and loss weight $\lambda$, so practitioners can steer toward complete removal or preserved prediction.
  • Same-class influence that extends beyond the $L$-hop neighborhood is explicitly addressed by the influence measure, which is the paper's explanation for why neighborhood-based high-influence selection underperforms.
  • SGU preserves the reasoning capability of the unlearned model through memory-based supervision, so frequent deletion requests need not degrade predictions on remaining nodes.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • (Editorial inference) If the Jacobian-based influence scores are good proxies for training entanglement, the same scores could serve as a data-attribution tool beyond unlearning, ranking which training nodes most shaped a given prediction.
  • (Editorial inference) The paper's motivating claims that same-label nodes are more influenced and different-label nodes less so (Sec. 1) are directly testable by inspecting NIM's selected sets; on highly heterophilic graphs, where same-label nodes are structurally distant, NIM's advantage over $L$-hop selection should shrink.
  • (Editorial inference) Because NIM is computed from the trained model's propagated features and predictions, it inherits the backbone's quality; for sampling-based GNN backbones the added weight-free propagation is an approximation, so the benefit may degrade when that propagation diverges from the actual training distribution.
  • (Editorial inference) The framework suggests a practical recipe for deletion requests in web-scale graphs: separate the expensive influence computation as a one-time pre-processing step, then let each new deletion request reuse it for fast entity-specific fine-tuning.
Share X Bluesky LinkedIn Reddit HN

Signed reviews

No signed human review yet.

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

5 major / 7 minor

Summary. The paper proposes a graph-unlearning framework built on a new high-influence entity (HIE) selection module called Node Influence Maximization (NIM). NIM treats unlearning entities as seeds in an influence-propagation model and scores each non-UE node by the L1 norm of Jacobians of propagated features and predictions (Eqs. (5)-(6)). SGU then fine-tunes the trained GNN with entity-specific losses: random-label cross-entropy, prototype perturbation, contrastive learning, and a memory-based KL term (Eqs. (9)-(12)). The authors claim that NIM is plug-and-play and improves the forgetting capability of existing graph-unlearning methods, and that SGU achieves state-of-the-art forgetting/reasoning while scaling to ogbn-papers100M. The experiments cover 14 datasets, multiple backbones, and transductive, inductive, and link-level settings.

Significance. If the central premise of NIM were established, the paper would make a useful conceptual and practical contribution: it draws a concrete connection between graph unlearning and influence maximization, and the plug-and-play HIE selector is simple enough to retrofit into existing GU pipelines. The experimental breadth is a genuine strength: 14 datasets, transductive/inductive/link settings, and several decoupled and sampling backbones. The paper also reports consistent gains of NIM across multiple HIE-based GU methods (Table 1), which is the most direct evidence for the plug-and-play claim. The main caveat is that the influence measure itself is asserted rather than derived, and the forgetting losses directly target the MIA signal, so the current experiments do not fully separate the effect of NIM from the effect of the fine-tuning objective. With a derivation or validation study and more careful reporting, the contribution would be solid.

major comments (5)
  1. [Sec. 3.1.1, Eqs. (5)-(6)] The influence measures in Eqs. (5)-(6) are asserted rather than derived. For a decoupled linear GNN of the form in Eq. (2), the effect of removing UE u on the trained weights is mediated by the loss term at u and by the curvature of the training objective; it is not determined by the L1 norm of dX_v/dX_u or dY_v/dY_u alone, because those Jacobians are evaluated at the already-trained model and do not involve the labels of u, the loss gradient at u, or the optimization trajectory. Since NIM's selected HIE are the input to all SGU losses (Eqs. (9)-(12)), this is a load-bearing assumption. Please either provide a derivation linking Eqs. (5)-(6) to leave-one-out influence for a linear GNN, or add a validation experiment on small graphs (e.g., compare NIM-selected HIE against actual retraining-based influence). Without this, the claim that NIM identifies nodes that carry UE knowledge is not established.
  2. [Sec. 3.1.2 (Def. 3) and Algorithm 1] Definition 3 (Eq. (8)) defines HIE as the set of nodes whose maximum influence from the UE seed set exceeds threshold theta. Algorithm 1, however, repeatedly selects the single node with the largest influence score until B nodes are collected (lines 11-17) and never uses theta. Thresholding and top-B selection are not equivalent rules, and App. A.7 reports searching theta in [0.5,1] while the algorithm uses B=3|DeltaV|. The reader cannot tell which criterion produced Tables 1-5 and Fig. 5. Please reconcile the formal definition with the implementation, and specify how theta and B interact (e.g., threshold then cap, or top-B with theta used only for sensitivity analysis).
  3. [Sec. 3.2.1, Tables 1 and 5] The forgetting losses directly remove the signals measured by the MIA: L1_f randomly shuffles UE labels, L2_f pushes UE embeddings away from class prototypes, and L3_f uses UE as negative samples. Low MIA AUC is therefore partially a consequence of the loss design, not necessarily of NIM's HIE selection. The paper should add a control experiment in which the SGU fine-tuning losses are held fixed and only the HIE source is changed (NIM vs L-hop neighborhood vs random nodes), and should report an additional membership-evaluation metric or a held-out UE set. This would separate the contribution of NIM from the contribution of the objective itself.
  4. [Tables 1, 5 and App. A.7] MIA results in Tables 1, 5, and 9 are reported without standard deviations, even though App. A.7 states that each experiment is repeated 10 times. The differences are small (e.g., Table 1 improvements of 4-5% on AUC values around 0.53-0.61), so without variance or significance testing the improvements may be within noise. In addition, App. A.7 says hyperparameters (B, theta, lambda, k) are searched per dataset/backbone to report the best performance; this selection protocol should be applied identically to baselines, and the chosen values should be reported in the main text or appendix. Please add error bars or per-seed values and a fixed validation-based hyperparameter protocol.
  5. [Table 3] Table 3 contains many OOM, OOT, or missing entries for baselines on arxiv, products, papers100M, Flickr, and Reddit. As a result, the comprehensive SOTA and scalability claim on large graphs rests on a small number of completed comparisons (notably SGU vs ScaleGUN, GNNDelete, and MEGU on papers100M). Please report runtime and peak memory for all completed cells, state the resource limits that caused OOM/OOT, and clarify whether the missing entries mean the baselines could not run at all under the reported environment.
minor comments (7)
  1. [Eq. (7)] The product notation in the random-walk expression lacks explicit limits and appears inconsistent with the definition of P_{v->u}^k; please rewrite with i=1..k.
  2. [Definitions 1 and 2] The phrase 'expected Jacobin matrix' should be 'Jacobian', and the expectation and the exact L1 matrix norm should be specified.
  3. [Eq. (4)] The notation overloads X_tilde for both the aggregated propagated features and per-layer quantities, and Y_tilde^{(k)} in Eq. (6) is never defined; please align the notation.
  4. [Algorithm 1] Line 3 names S the 'seed set (HIE)', although HIE is the activated set; line 16 also uses u without a definition. Please rename and clarify.
  5. [Table 6] The table uses '!' and '%' symbols without a legend; please define them in the caption.
  6. [App. A.6 / Table 6] The table lists 'GCU [9]', but reference [9] is CGU; please correct the citation.
  7. [Reproducibility] No code or data link is provided; please include a reproducibility artifact.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: NIM's influence scores are a modeling choice and SGU's reported gains are empirical, not derived from the evaluation metrics.

full rationale

The derivation chain is: NIM defines influence via Jacobians of propagated features and predictions (Eqs. 5-6), selects HIE by threshold or budget (Eq. 8 and Algorithm 1), and fine-tunes UE/HIE with entity-specific losses (Eqs. 9-12). None of these steps is defined in terms of the reported metrics (MIA AUC, F1, link-prediction HR/MRR), and no equation reduces to its own input by construction. The claim that Eqs. (5)-(6) faithfully capture training-time UE influence is an asserted modeling assumption rather than a tautology; the paper itself leaves 'GU-tailored influence propagation model and quantification functions' as future work, which is a limitation but not circularity. The paper does cite prior work by overlapping authors (e.g., MEGU [29], Rethinking Node-wise Propagation [28]), but these citations are baselines and background support, not a load-bearing uniqueness theorem or the source of the main result. The random-label forgetting loss L1_f directly randomizes UE labels, so MIA on UE is aligned with the unlearning objective; this is the standard definition of the task, and the comparative claims (NIM vs L-hop HIE selection, SGU vs baselines) are empirical findings evaluated against external benchmarks rather than definitional equivalences. The inconsistency between threshold-based Definition 3 and argmax-based Algorithm 1 is a clarity issue, not circularity. Overall, the central derivation is self-contained and the reported improvements are empirical, so the circularity score is 0.

Assumptions & free parameters 4 free parameters · 4 assumptions · 0 invented entities

The method is primarily empirical; its central mechanism depends on unstated modeling assumptions about what influence means. The free parameters theta, B, lambda, and k are fitted to data, which limits the strength of any causal claim about the method's components.

free parameters (4)
  • Activation threshold theta = searched in [0.5, 1] per dataset
    Determines which Non-UE nodes are selected as HIE in Eq. (8); higher theta means fewer nodes. Tuned to report best performance (App. A.7).
  • Unlearning budget B = default 3 x |Delta V|
    Controls the number of HIE; set to three times the UE set size, with per-dataset tuning implied by sensitivity analysis.
  • Loss balance lambda = searched in [0, 1]
    Balances forgetting loss and reasoning loss in L = lambda L_f + (1-lambda) L_p; tuned per dataset (App. A.7, A.11).
  • Propagation steps k = searched in [3, 10]
    Number of graph propagation steps in Eq. (4); searched per dataset (App. A.7).
assumptions (4)
  • domain assumption The L1 norm of the expected Jacobian of propagated features (Eq. 5) is a valid measure of the topology influence of a node.
    Stated in Sec. 3.1.1 without derivation or empirical validation that this Jacobian captures training-time influence.
  • domain assumption The L1 norm of the expected Jacobian of model predictions (Eq. 6) is a valid measure of feature influence, i.e., gradient-driven label supervision.
    Stated in Sec. 3.1.1; no proof that this quantity corresponds to the influence of UE on optimization.
  • domain assumption Nodes with influence above threshold theta are exactly the high-influence entities whose knowledge must be removed.
    Definition 3 in Sec. 3.1.2; this equivalence is assumed, not proven.
  • domain assumption Decoupled weight-free graph propagation (Eq. 4) adequately represents the message-passing of the GNN for the purpose of influence quantification.
    Invoked for all backbones; for non-decoupled GNNs the paper adds a propagation pass, assuming the learned weights do not change the influence structure.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Toward Scalable Graph Unlearning: A Node Influence Maximization based Approach." pith.science (2026). https://pith.science/paper/4BQG55S2

@misc{pith2026250111823,
  author       = {Pith},
  title        = {Pith review of: Toward Scalable Graph Unlearning: A Node Influence Maximization based Approach},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/4BQG55S2}},
  note         = {Machine review of arXiv:2501.11823}
}
read the original abstract

Machine unlearning, as a pivotal technology for enhancing model robustness and data privacy, has garnered significant attention in prevalent web mining applications, especially in thriving graph-based scenarios. However, most existing graph unlearning (GU) approaches face significant challenges due to the intricate interactions among web-scale graph elements during the model training: (1) The gradient-driven node entanglement hinders the complete knowledge removal in response to unlearning requests; (2) The billion-level graph elements in the web scenarios present inevitable scalability issues. To break the above limitations, we open up a new perspective by drawing a connection between GU and conventional social influence maximization. To this end, we propose Node Influence Maximization (NIM) through the decoupled influence propagation model and fine-grained influence function in a scalable manner, which is crafted to be a plug-and-play strategy to identify potential nodes affected by unlearning entities. This approach enables offline execution independent of GU, allowing it to be seamlessly integrated into most GU methods to improve their unlearning performance. Based on this, we introduce Scalable Graph Unlearning (SGU) as a new fine-tuned framework, which balances the forgetting and reasoning capability of the unlearned model by entity-specific optimizations. Extensive experiments on 14 datasets, including large-scale ogbn-papers100M, have demonstrated the effectiveness of our approach. Specifically, NIM enhances the forgetting capability of most GU methods, while SGU achieves comprehensive SOTA performance and maintains scalability.

Figures

Figures reproduced from arXiv: 2501.11823 by the authors.

Figure 1
Figure 1. (a,b) Performance in the ogbn-arxiv (169k Nodes). The red line (AUC=0.5) represents the best unlearning performance [PITH_FULL_IMAGE:figures/full_fig_p002_1.png] view at source ↗
Figure 2
Figure 2. Overview of our proposed SGU framework. 3.1 Node Influence Maximization The message-passing mechanism in most GNNs creates intricate interactions among graph entities during training, which results in a complex and unquantifiable gradient flow. This poses a sig￾nificant challenge in completely removing the model knowledge contributed by UE. Recent studies have observed that GNNs pri￾marily derive their benefits from… view at source ↗
Figure 3
Figure 3. Node-level performance on arxiv within Edge Attack. The x-axis is the ratio of noisy edges to the existing edges. [PITH_FULL_IMAGE:figures/full_fig_p007_3.png] view at source ↗
Figures from the paper (6 more)
Figure 4
Figure 4. Figure 4: Predictive performance of node unlearning within different ratios on PPI. [PITH_FULL_IMAGE:figures/full_fig_p008_4.png]
Figure 5
Figure 5. Figure 5: Sensitive analysis within GAMLP and node removal. [PITH_FULL_IMAGE:figures/full_fig_p008_5.png]
Figure 6
Figure 6. Figure 6: Running efficiency within S2GC and node removal. 4.4 Robustness Analysis To answer Q4, we first evaluate SGU and the two most competitive baselines across varying unlearning scales in [PITH_FULL_IMAGE:figures/full_fig_p008_6.png]
Figure 7
Figure 7. Figure 7: Predictive performance of feature unlearning within different ratios on Cora. [PITH_FULL_IMAGE:figures/full_fig_p017_7.png]
Figure 8
Figure 8. Figure 8: Predictive performance of edge unlearning within different ratios on Photo. [PITH_FULL_IMAGE:figures/full_fig_p017_8.png]
Figure 9
Figure 9. Figure 9: Sensitivity analysis on entity-specify optimization objectives. [PITH_FULL_IMAGE:figures/full_fig_p017_9.png]

Discussion (0). Continue with ORCID to comment.

Forward citations

Cited by 1 Pith paper

Reviewed papers in the Pith corpus that reference this work. Sorted by Pith novelty score. Full citation record

  1. Unlearning Algorithmic Biases over Graphs

    cs.LG 2025-05 reject novelty 6.0 of 10

    Graph unlearning repurposed as a training-free post-processing debiasing method, with correlation-based feature and degree-aware structural selection.

Reference graph

Works this paper leans on

81 extracted references · 63 canonical work pages · cited by 1 Pith paper

  1. [1]

    Takuya Akiba, Shotaro Sano, Toshihiko Yanase, Takeru Ohta, and Masanori Koyama. 2019. Optuna: A next-generation hyperparameter optimization frame- work. In Proceedings of the ACM SIGKDD Conference on Knowledge Discovery and Data Mining, KDD

  2. [2]

    Bruna, W

    J. Bruna, W. Zaremba, A. Szlam, and Y. Lecun. 2013. Spectral Networks and Locally Connected Networks on Graphs. Computer Science (2013)

  3. [3]

    Benjamin Paul Chamberlain, Sergey Shirobokov, Emanuele Rossi, Fabrizio Frasca, Thomas Markovich, Nils Hammerla, Michael M Bronstein, and Max Hansmire

  4. [4]

    Deli Chen, Yankai Lin, Guangxiang Zhao, Xuancheng Ren, Peng Li, Jie Zhou, and Xu Sun. 2021. Topology-imbalance learning for semi-supervised node classifica- tion. Advances in Neural Information Processing Systems, NeurIPS (2021)

  5. [5]

    Ming Chen, Zhewei Wei, Bolin Ding, Yaliang Li, Ye Yuan, Xiaoyong Du, and Ji-Rong Wen. 2020. Scalable graph neural networks via bidirectional propagation. Advances in Neural Information Processing Systems, NeurIPS (2020)

  6. [6]

    Min Chen, Zhikun Zhang, Tianhao Wang, Michael Backes, Mathias Humbert, and Yang Zhang. 2022. Graph unlearning. In Proceedings of ACM SIGSAC Conference on Computer and Communications Security, CCS

  7. [7]

    Jiali Cheng, George Dasoulas, Huan He, Chirag Agarwal, and Marinka Zitnik

  8. [8]

    Wei-Lin Chiang, Xuanqing Liu, Si Si, Yang Li, Samy Bengio, and Cho-Jui Hsieh

Show all 81 references
  1. [9]

    In International Conference on Learning Representations, ICLR

    GNNDelete: A General Strategy for Unlearning in Graph Neural Networks. In International Conference on Learning Representations, ICLR

  2. [10]

    Seungyoon Choi, Wonjoong Kim, Sungwon Kim, Yeonjun In, Sein Kim, and Chanyoung Park. 2024. DSLR: Diversity Enhancement and Structure Learning for Rehearsal-based Graph Continual Learning. In Companion Proceedings of the ACM on Web Conference, WWW

  3. [11]

    Weilin Cong and Mehrdad Mahdavi. 2022. GraphEditor: An Efficient Graph Representation Learning and Unlearning Approach. (2022)

  4. [12]

    Eli Chien, Chao Pan, and Olgica Milenkovic. 2022. Certified Graph Unlearning. In NeurIPS 2022 Workshop: New Frontiers in Graph Learning

  5. [13]

    Kaiwen Dong, Zhichun Guo, and Nitesh V Chawla. 2023. Pure Message Pass- ing Can Estimate Common Neighbor for Link Prediction. arXiv preprint arXiv:2309.00976 (2023)

  6. [14]

    Wenzheng Feng, Yuxiao Dong, Tinglin Huang, Ziqi Yin, Xu Cheng, Evgeny Kharlamov, and Jie Tang. 2022. Grand+: Scalable graph random neural networks. In Proceedings of the ACM Web Conference, WWW

  7. [15]

    Weilin Cong and Mehrdad Mahdavi. 2023. Efficiently Forgetting What You Have Learned in Graph Representation Learning via Projection. In International Conference on Artificial Intelligence and Statistics, AISTATS

  8. [16]

    Johannes Gasteiger, Chendi Qian, and Stephan Günnemann. 2022. Influence- based mini-batching for graph neural networks. InLearning on Graphs Conference, LoG. PMLR

  9. [17]

    Chuan Guo, Tom Goldstein, Awni Hannun, and Laurens Van Der Maaten. 2020. Certified data removal from machine learning models. International Conference on Machine Learning, ICML (2020)

  10. [18]

    Fabrizio Frasca, Emanuele Rossi, Davide Eynard, Ben Chamberlain, Michael Bronstein, and Federico Monti. 2020. Sign: Scalable inception graph neural networks. arXiv preprint arXiv:2004.11198 (2020)

  11. [19]

    Will Hamilton, Zhitao Ying, and Jure Leskovec. 2017. Inductive representation learning on large graphs. Advances in Neural Information Processing Systems, NeurIPS (2017)

  12. [20]

    Xinlei He, Jinyuan Jia, Michael Backes, Neil Zhenqiang Gong, and Yang Zhang

  13. [21]

    Qintian Guo, Sibo Wang, Zhewei Wei, and Ming Chen. 2020. Influence maximiza- tion revisited: Efficient reverse reachable set generation with bound tightened. In Proceedings of the ACM on Management of Data, SIGMOD

  14. [22]

    Youpeng Hu, Xunkai Li, Yujie Wang, Yixuan Wu, Yining Zhao, Chenggang Yan, Jian Yin, and Yue Gao. 2021. Adaptive hypergraph auto-encoder for relational data clustering. IEEE Transactions on Knowledge and Data Engineering (2021)

  15. [23]

    Peter Kabal and Ravi Prakash Ramachandran. 1986. The computation of line spec- tral frequencies using Chebyshev polynomials. IEEE Transactions on Acoustics, Speech, and Signal Processing 34, 6 (1986), 1419–1426

  16. [24]

    David Kempe, Jon Kleinberg, and Éva Tardos. 2003. Maximizing the spread of influence through a social network. InProceedings of the ACM SIGKDD Conference on Knowledge Discovery and Data Mining, KDD

  17. [25]

    Weihua Hu, Matthias Fey, Marinka Zitnik, Yuxiao Dong, Hongyu Ren, Bowen Liu, Michele Catasta, and Jure Leskovec. 2020. Open graph benchmark: Datasets for machine learning on graphs. Advances in Neural Information Processing Systems, NeurIPS (2020)

  18. [26]

    Pang Wei Koh and Percy Liang. 2017. Understanding black-box predictions via influence functions. In International Conference on Machine Learning, ICML

  19. [27]

    Xunkai Li, Meihao Liao, Zhengyu Wu, Daohan Su, Wentao Zhang, Rong-Hua Li, and Guoren Wang. 2024. LightDiC: A Simple Yet Effective Approach for Large- Scale Digraph Representation Learning. Proceedings of the VLDB Endowment (2024)

  20. [28]

    Xunkai Li, Jingyuan Ma, Zhengyu Wu, Daohan Su, Wentao Zhang, Rong-Hua Li, and Guoren Wang. 2024. Rethinking Node-wise Propagation for Large-scale Graph Learning. In Proceedings of the ACM Web Conference, WWW

  21. [29]

    Thomas N Kipf and Max Welling. 2017. Semi-supervised classification with graph convolutional networks. In International Conference on Learning Representations, Conference acronym ’XX, June 03–05, 2018, Woodstock, NY Xunkai Li et al. ICLR

  22. [30]

    Jiahao Liu, Dongsheng Li, Hansu Gu, Tun Lu, Jiongran Wu, Peng Zhang, Li Shang, and Ning Gu. 2023. Recommendation unlearning via matrix correction. arXiv preprint arXiv:2307.15960 (2023)

  23. [31]

    Eric Mitchell, Charles Lin, Antoine Bosselut, Chelsea Finn, and Christopher D Manning. 2022. Fast model editing at scale. InInternational Conference on Learning Representations, ICLR

  24. [32]

    George L Nemhauser, Laurence A Wolsey, and Marshall L Fisher. 1978. An analysis of approximations for maximizing submodular set functions—I. Mathematical programming 14 (1978), 265–294

  25. [33]

    Xunkai Li, Yulin Zhao, Zhengyu Wu, Wentao Zhang, Rong-Hua Li, and Guoren Wang. 2024. Towards Effective and General Graph Unlearning via Mutual Evolu- tion. In Proceedings of the Association for the Advancement of Artificial Intelligence, AAAI

  26. [34]

    Chao Pan, Eli Chien, and Olgica Milenkovic. 2023. Unlearning Graph Classifiers with Limited Data Resources. In Proceedings of the ACM Web Conference, WWW

  27. [35]

    Oleg Platonov, Denis Kuznedelev, Artem Babenko, and Liudmila Prokhorenkova

  28. [36]

    Oleg Platonov, Denis Kuznedelev, Michael Diskin, Artem Babenko, and Liud- mila Prokhorenkova. 2023. A critical look at the evaluation of GNNs under heterophily: are we really making progress? International Conference on Learning Representations, ICLR (2023)

  29. [37]

    Naoto Ohsaka. 2020. The solution distribution of influence maximization: A high-level experimental study on three algorithmic approaches. In Proceedings of the ACM on Management of Data, SIGMOD

  30. [38]

    Thanveer Basha Shaik. 2023. Revolutionizing healthcare with federated rein- forcement learning: from machine learning to machine unlearning. (2023)

  31. [39]

    Oleksandr Shchur, Maximilian Mumme, Aleksandar Bojchevski, and Stephan Günnemann. 2018. Pitfalls of graph neural network evaluation. arXiv preprint arXiv:1811.05868 (2018)

  32. [40]

    Advances in Neural Information Processing Systems, NeurIPS (2023)

    Characterizing graph datasets for node classification: Beyond homophily- heterophily dichotomy. Advances in Neural Information Processing Systems, NeurIPS (2023)

  33. [41]

    Yash Sinha, Murari Mandal, and Mohan Kankanhalli. 2023. Distill to Delete: Unlearning in Graph Networks with Knowledge Distillation. arXiv preprint arXiv:2309.16173 (2023)

  34. [42]

    Anwar Said, Tyler Derr, Mudassir Shabbir, Waseem Abbas, and Xenofon Kout- soukos. 2023. A survey of graph unlearning. arXiv preprint arXiv:2310.02164 (2023)

  35. [43]

    Jiajun Tan, Fei Sun, Ruichen Qiu, Du Su, and Huawei Shen. 2024. Unlink to unlearn: Simplifying edge unlearning in gnns. In Companion Proceedings of the ACM on Web Conference, WWW

  36. [44]

    Youze Tang, Yanchen Shi, and Xiaokui Xiao. 2015. Influence maximization in near- linear time: A martingale approach. In Proceedings of the ACM on Management of Data, SIGMOD

  37. [45]

    Reza Shokri, Marco Stronati, Congzheng Song, and Vitaly Shmatikov. 2017. Mem- bership inference attacks against machine learning models. In IEEE Symposium on Security and Privacy, SP

  38. [46]

    Cheng-Long Wang, Mengdi Huai, and Di Wang. 2023. Inductive Graph Unlearn- ing. arXiv preprint arXiv:2304.03093 (2023)

  39. [47]

    Damian Szklarczyk, Annika L Gable, David Lyon, Alexander Junge, Stefan Wyder, Jaime Huerta-Cepas, Milan Simonovic, Nadezhda T Doncheva, John H Morris, Peer Bork, et al. 2019. STRING v11: protein–protein association networks with in- creased coverage, supporting functional disc...

  40. [48]

    Kuansan Wang, Zhihong Shen, Chiyuan Huang, Chieh-Han Wu, Yuxiao Dong, and Anshul Kanakia. 2020. Microsoft academic graph: When experts are not enough. Quantitative Science Studies 1, 1 (2020), 396–413

  41. [49]

    Song Wang, Yushun Dong, Binchi Zhang, Zihan Chen, Xingbo Fu, Yinhan He, Cong Shen, Chuxu Zhang, Nitesh V Chawla, and Jundong Li. 2024. Safety in Graph Machine Learning: Threats and Safeguards.arXiv preprint arXiv:2405.11034 (2024)

  42. [50]

    Petar Veličković, Guillem Cucurull, Arantxa Casanova, Adriana Romero, Pietro Lio, and Yoshua Bengio. 2018. Graph attention networks. In International Confer- ence on Learning Representations, ICLR

  43. [51]

    Yexin Wang, Zhi Yang, Junqi Liu, Wentao Zhang, and Bin Cui. 2023. Scapin: Scalable Graph Structure Perturbation by Augmented Influence Maximization. Proceedings of the ACM on Management of Data, SIGMOD (2023)

  44. [52]

    Hanzhi Wang, Mingguo He, Zhewei Wei, Sibo Wang, Ye Yuan, Xiaoyong Du, and Ji-Rong Wen. 2021. Approximate graph propagation. In Proceedings of the ACM SIGKDD Conference on Knowledge Discovery and Data Mining, KDD

  45. [53]

    Jiancan Wu, Yi Yang, Yuchun Qian, Yongduo Sui, Xiang Wang, and Xiangnan He. 2023. GIF: A General Graph Unlearning Strategy via Influence Function. In Proceedings of the ACM Web Conference, WWW

  46. [54]

    Kun Wu, Jie Shen, Yue Ning, Ting Wang, and Wendy Hui Wang. 2023. Certified edge unlearning for graph neural networks. In Proceedings of the ACM SIGKDD Conference on Knowledge Discovery and Data Mining, KDD

  47. [55]

    Xiyuan Wang, Haotong Yang, and Muhan Zhang. 2024. Neural common neigh- bor with completion for link prediction. International Conference on Learning Representations, ICLR (2024)

  48. [56]

    Keyulu Xu, Weihua Hu, Jure Leskovec, and Stefanie Jegelka. 2019. How powerful are graph neural networks? (2019)

  49. [57]

    Felix Wu, Amauri Souza, Tianyi Zhang, Christopher Fifty, Tao Yu, and Kilian Weinberger. 2019. Simplifying graph convolutional networks. In International Conference on Machine Learning, ICML

  50. [58]

    Cohen, and Ruslan Salakhutdinov

    Zhilin Yang, William W. Cohen, and Ruslan Salakhutdinov. 2016. Revisiting Semi-Supervised Learning with Graph Embeddings. In International Conference on Machine Learning, ICML

  51. [59]

    Lu Yi and Zhewei Wei. 2024. Scalable and Certifiable Graph Unlearning via Lazy Local Propagation. arXiv preprint arXiv:2408.09212 (2024)

  52. [60]

    Xin Xin, Liu Yang, Ziqi Zhao, Pengjie Ren, Zhumin Chen, Jun Ma, and Zhaochun Ren. 2024. On the effectiveness of unlearning in session-based recommendation. In Proceedings of the ACM International Conference on Web Search and Data Mining, WSDM

  53. [61]

    Seongjun Yun, Seoyoon Kim, Junhyun Lee, Jaewoo Kang, and Hyunwoo J Kim

  54. [62]

    Yu Yang, Enhong Chen, Qi Liu, Biao Xiang, Tong Xu, and Shafqat Ali Shad

  55. [63]

    Jiahao Zhang. 2024. Graph unlearning with efficient partial retraining. In Com- panion Proceedings of the ACM on Web Conference, WWW

  56. [64]

    Muhan Zhang and Yixin Chen. 2018. Link prediction based on graph neural networks. Advances in Neural Information Processing Systems, NeurIPS (2018)

  57. [65]

    Wentao Zhang, Yu Shen, Zheyu Lin, Yang Li, Xiaosen Li, Wen Ouyang, Yangyu Tao, Zhi Yang, and Bin Cui. 2022. PaSca: A Graph Neural Architecture Search System under the Scalable Paradigm. In Proceedings of the ACM Web Conference, WWW

  58. [66]

    Wei Yuan, Hongzhi Yin, Fangzhao Wu, Shijie Zhang, Tieke He, and Hao Wang

  59. [67]

    In Proceedings of the ACM International Conference on Web Search and Data Mining, WSDM

    Federated unlearning for on-device recommendation. In Proceedings of the ACM International Conference on Web Search and Data Mining, WSDM

  60. [68]

    Wentao Zhang, Zhi Yang, Yexin Wang, Yu Shen, Yang Li, Liang Wang, and Bin Cui

  61. [69]

    Advances in Neural Information Processing Systems, NeurIPS (2021)

    Neo-gnns: Neighborhood overlap-aware graph neural networks for link prediction. Advances in Neural Information Processing Systems, NeurIPS (2021)

  62. [70]

    Hanqing Zeng, Hongkuan Zhou, Ajitesh Srivastava, Rajgopal Kannan, and Viktor Prasanna. 2020. Graphsaint: Graph sampling based inductive learning method. In International conference on learning representations, ICLR

  63. [71]

    Xin Zheng, Yixin Liu, Shirui Pan, Miao Zhang, Di Jin, and Philip S Yu. 2022. Graph neural networks for graphs with heterophily: A survey. arXiv preprint arXiv:2202.07082 (2022)

  64. [72]

    Hao Zhu and Piotr Koniusz. 2021. Simple spectral graph convolution. In Interna- tional Conference on Learning Representations, ICLR . Toward Scalable Graph Unlearning: A Node Influence Maximization based Approach Conference acronym ’XX, June 03–05, 2018, Woodstock, NY A Outlin...

  65. [74]

    Wentao Zhang, Yexin Wang, Zhenbang You, Meng Cao, Ping Huang, Jiulong Shan, Zhi Yang, and Bin Cui. 2021. Rim: Reliable influence-based active learning on graphs. Advances in Neural Information Processing Systems, NeurIPS (2021)

  66. [75]

    Wentao Zhang, Mingyu Yang, Zeang Sheng, Yang Li, Wen Ouyang, Yangyu Tao, Zhi Yang, and Bin Cui. 2021. Node dependent local smoothing for scalable graph learning. Advances in Neural Information Processing Systems, NeurIPS (2021)

  67. [77]

    Proceedings of the VLDB Endowment (2021)

    Grain: Improving data efficiency of graph neural networks via diversified influence maximization. Proceedings of the VLDB Endowment (2021)

  68. [78]

    Wentao Zhang, Ziqi Yin, Zeang Sheng, Yang Li, Wen Ouyang, Xiaosen Li, Yangyu Tao, Zhi Yang, and Bin Cui. 2022. Graph Attention Multi-Layer Perceptron. Proceedings of the ACM SIGKDD Conference on Knowledge Discovery and Data Mining, KDD (2022)

  69. [79]

    Yuying Zhao, Yunfei Hu, Pingpeng Yuan, and Hai Jin. 2021. Maximizing influence over streaming graphs with query sequence. Data Science and Engineering 6, 3 (2021), 339–357

  70. [2012]

    In Machine Learning and Knowledge Discovery in Databases: European Conference, ECML PKDD 2012, Bristol, UK, September 24-28, 2012

    On approximation of real-world influence spread. In Machine Learning and Knowledge Discovery in Databases: European Conference, ECML PKDD 2012, Bristol, UK, September 24-28, 2012. Proceedings, Part II 23 . Springer, 548–564

  71. [2019]

    In Proceedings of the ACM SIGKDD Conference on Knowledge Discovery and Data Mining, KDD

    Cluster-gcn: An efficient algorithm for training deep and large graph con- volutional networks. In Proceedings of the ACM SIGKDD Conference on Knowledge Discovery and Data Mining, KDD

  72. [2021]

    In USENIX Security Symposium, USENIX

    Stealing links from graph neural networks. In USENIX Security Symposium, USENIX

  73. [2023]

    Inter- national Conference on Learning Representations, ICLR (2023)

    Graph neural networks for link prediction with subgraph sketching. Inter- national Conference on Learning Representations, ICLR (2023)

Pith tools

Reviewed August 10, 2026 · model on record in the stance chip above.