Pith. sign in

REVIEW 5 major objections 5 minor 48 references

The Oversmoothing Fallacy: A Misguided Narrative in GNN Research

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

Pith's one-line read This paper argues that deep GNN performance collapse is a vanishing-gradient problem, not oversmoothing.

desk verdict Provocative and useful, but its central attribution experiment runs on untrained Glorot nets and cannot yet separate zero-collapsing from oversmoothing. read the letter →

arxiv 2506.04653 v1 pith:PWVYR7NM submitted 2025-06-05 cs.LG

classification cs.LG
keywords oversmoothinggraphneuralnetworksvanishinggradientzero-collapsingdeepGNNsresidualconnectionsbatchnormalizationnodesimilarity
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

This paper argues that the standard narrative blaming oversmoothing for the failure of deep graph neural networks is largely a misdiagnosis. Decomposing each GNN layer into aggregation, linear transformation, and nonlinear activation, it finds that the transformation and activation steps, not the aggregation over neighbors, drive node embeddings toward the zero vector in deep networks. That zero-collapsing is the familiar vanishing-gradient problem of ordinary neural networks, and the paper shows that oversmoothing proper can be escaped by a trained GCN. If the argument holds, deep GNNs do not need graph-specific fixes: classical residual connections plus batch normalization suffice, and the paper demonstrates GCNs trained to 1,024 layers with stable accuracy.

What carries the argument

The central machinery is a stepwise ablation that splits each GNN layer into aggregation (A), linear transformation (T), and nonlinear activation ($\sigma$) and measures how three node-similarity metrics decay for each subset; this isolates which step drives the collapse. The paper also relies on the distinction between two convergence definitions, degree-scaled convergence for GCNs and uniform convergence for GATs, with the zero vector as a special case that made the two easy to confuse. The residual-connection-plus-batch-normalization recipe then serves as the practical instrument showing that the collapse is optimizable.

What would settle it

Re-run the stepwise node-similarity measurements on a deep GCN using trained weights or a ReLU-adapted initialization: if the aggregation-only variant decays as fast as the full network, or if deep trained networks without residual connections retain performance under that initialization, the paper's attribution of the collapse to transformation and activation would be refuted.

Watch

Extended reading notes

Core claim

The paper's central claim is that prior work confused two distinct phenomena: true oversmoothing, in which embeddings converge to a node-degree-scaled or uniform limit, and zero-collapsing, in which the linear transformation and ReLU activation drive all embeddings toward the zero vector. Measured on untrained 128-layer GCNs and GATs under the default initialization, the aggregation step alone produces only mild decay of three standard node-similarity measures, while the combination of transformation and activation reproduces the full exponential decay; histograms show features collapsing to zero within a few layers. The authors conclude that the exponential oversmoothing reported in the literature is mostly a vanishing-gradient artifact, that a GCN with all node features initialized identically can still be trained to near-baseline accuracy, and that skip connections plus batch normalization, classics for vanishing gradients, allow very deep GCNs to train without degradation.

Load-bearing premise

The step-by-step verdict that aggregation is nearly harmless comes from measuring node similarity in untrained networks under one default weight-initialization scheme, and the appendix shows the decay rates change substantially under a different initialization, so the attribution may not hold for trained networks.

Editorial extensions

If this is right

  • Exponential collapse of node similarity in GCNs and GATs is mostly an artifact of transformation plus ReLU activation under the default initialization, not of message passing.
  • A GCN whose embeddings are already perfectly smoothed (all node features identical) can still be trained to near-baseline accuracy, so oversmoothing alone does not block learning.
  • Adding skip connections and batch normalization lets GCNs scale to 1,024 layers with stable accuracy, and these two classics beat dedicated oversmoothing methods such as DropEdge, PairNorm, and SkipNode.
  • Zero-collapsing appears in ordinary MLPs as well, so the depth problem of GNNs belongs to the general neural-network optimization literature rather than to graph-specific theory.
  • The optimal depth of a GNN is dataset-dependent, with heterophilic and large-scale datasets capable of benefiting from depth once zero-collapsing is handled.

Reading between the lines

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

  • The paper leaves implicit that many aggregation-targeting oversmoothing methods may owe their gains to regularization or optimization side effects, since the aggregation step itself is exonerated.
  • A natural test the authors do not run is to repeat the stepwise attribution on trained weights rather than untrained forward passes; the paper's own appendix shows the conclusion could shift with initialization choice.
  • If the central claim holds, benchmark suites for deep GNNs should include a plain GCN with skip connections and batch normalization as a control before attributing gains to graph-specific mechanisms.
  • The argument implies that widening the depth hyperparameter search beyond the usual few layers is promising for heterophilic and large-scale datasets, where the paper finds best accuracy at deeper layers.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

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

Referee Report

5 major / 5 minor

Summary. This position paper challenges the dominant narrative that oversmoothing is the primary obstacle to training deep graph neural networks. The authors identify two definitions of oversmoothing in the literature (degree-scaled and uniform convergence), assert that many prior studies have conflated these with the zero-vector special case they call 'zero-collapsing,' and argue that the aggregation step has only a marginal effect on this phenomenon. To support this, they decompose GCN and GAT layers into aggregation, transformation, and activation, and measure three oversmoothing metrics on untrained Glorot-initialized forward passes for 128 layers; they find that models without activation decay much more slowly and that embeddings collapse to zero. They further show that GCNs can be trained even when all input features are identical, and that residual connections plus batch normalization allow GCNs to be trained to 1,024 layers. The paper concludes that vanishing gradients, not oversmoothing, cause deep-GNN performance collapse.

Significance. If the paper's claims were fully established, they would constitute an important correction to a widely cited narrative in GNN research and would refocus the community on architecture design and initialization rather than on graph-specific smoothing. The paper's strengths include a clear decomposition of the GNN update into its three steps, a transparent experimental setup across many datasets, and a compelling demonstration that classical residual connections and batch normalization substantially improve training of very deep GCNs. The appendices provide extensive supplementary experiments. However, the central diagnostic claim rests on an untrained, Glorot-initialized forward-pass analysis whose conclusions change with initialization, and the similarity measures used do not distinguish zero-collapsing from genuine node-wise convergence. The significance of the work is therefore conditional on the authors strengthening the causal evidence.

major comments (5)
  1. [Section 3.2, Fig. 3, Appendix C.5] The conclusion that 'aggregation alone has a minimal impact' is based on measuring similarity decay on untrained forward passes with Glorot-initialized parameters. Appendix C.5 (Figs. A6–A8) shows that with He initialization the decay rates of the same metrics change substantially and zero-collapsing is largely mitigated, which the paper itself acknowledges ('Parameter initialization has a significant impact'). As a result, the reported attribution of exponential decay to transformation and activation rather than aggregation is a property of the chosen initialization, not of the GNN architecture under training. To support the claim about what causes training failure, the authors should repeat the stepwise analysis with He initialization and with trained (or at least partially trained) weights, or alternatively restrict their conclusion to Glorot initialization and justify why that is the relevant setting for the prior oversmoothing literature.
  2. [Section 3.2, Appendix A] The three similarity measures used (µ_cai, µ_wu, µ_rusch) all have the all-zero embedding as a fixed point, so their exponential decay in Fig. 3 is consistent both with genuine node-wise convergence (Proposition 1 or 2 with nonzero c) and with global collapse of the embedding norm (c = 0). The histograms in Fig. 4 show that zero-collapsing occurs, but they do not separate the contribution of zero-collapsing from that of directional convergence in each of the four model variants. A scale-invariant measure of directional convergence (for example, the cosine similarity between node embeddings, or the Dirichlet energy normalized by the squared norm of the embedding) is necessary before the authors can attribute the decay to transformation and activation rather than to aggregation.
  3. [Section 3.2, Fig. 3] Even the aggregation-only curve in Fig. 3 decays exponentially. For a per-layer factor of 0.9–0.95, which fits the aggregation-only curves, at the paper's headline depth of 1,024 layers (Section 4.1) the similarity measure is reduced by a factor between roughly 10^-23 and 10^-47, i.e., total collapse. Calling this effect 'marginal' is therefore depth-relative and does not transfer to the very deep regime that the paper advocates; the authors should either report depth-normalized decay rates or explicitly state that the claim is limited to the 128-layer range shown.
  4. [Section 3.3, Fig. 5] The Xone experiment, which underlies the claim that 'GCNs are capable of escaping the oversmoothing regime,' is presented without error bars or a statement of repeated runs in Fig. 5. Appendix D states that 10 standard splits are used for these experiments, so the authors should report mean and standard deviation (or a distribution) for each bar. Without this information, the reader cannot assess whether the GCN advantage over GAT and MLP is significant, particularly on datasets like Chameleon where the paper claims even better accuracy with uniform features.
  5. [Abstract, Section 4.1, Fig. 6] The paper claims that residual connections and batch normalization enable 'successful stacking of deep GNN layers without performance degradation.' However, Fig. 6 shows that on Cora, PubMed, and Photo the test accuracy with SC & BN still declines substantially with depth (e.g., Cora falls from roughly 80% at shallow depths to roughly 40% at 1,024 layers). The claim should be weakened to 'without catastrophic collapse' or the authors should provide evidence that the depth degradation is removed relative to a competitive baseline; otherwise the empirical support for the abstract's phrasing is missing.
minor comments (5)
  1. [Appendix A, last paragraph] The sentence 'µcai(·) satisfies µwu(X) = 0 if and only if Proposition 2 holds' appears to have a typo; it should refer to µrusch, since Proposition 2 concerns uniform convergence and the measure being described is the Rusch Dirichlet energy.
  2. [Section 3.2, paragraph after Fig. 3] The sentence 'A+T is equal to the MLP architecture' should read 'σ+T is equal to the MLP architecture'; the text immediately before correctly identifies the σ+T variant as the MLP.
  3. [Figure 5 caption] The caption 'The cross-hatched bar uses the original features X, while others use uniform features Xone' is ambiguous; please indicate which bar in each group is cross-hatched.
  4. [Throughout] The paper alternates between 'oversmoothing' and 'over-smoothing' (e.g., in the Section 1 heading and the caption of Fig. 3); please use a consistent spelling throughout.
  5. [Section 3.2, near Fig. 3] The main text does not explicitly state that the forward passes in Fig. 3 are untrained; this is mentioned only in Appendix D. State this in the main text to avoid misleading readers about the experimental protocol.

Circularity Check

1 steps flagged · score 6.0 of 10

The central zero-collapsing/oversmoothing distinction is definitional: the paper's own convergence conditions include the zero vector, so declaring zero convergence 'not genuine oversmoothing' relabels the prior result rather than deriving a new one.

  1. self definitional [Section 3.2, paragraph following the discussion of contradictory GCN results]
    "In response to the question raised by the contradictory results discussed in Section 3.1, we believe the confusion arises because the target embedding vector c in Propositions 1 and 2 includes the zero vector as a special case. Consequently, many previous studies incorrectly interpreted convergence to the zero vector as evidence of oversmoothing. However, our experiments suggest that convergence to the zero vector is not a genuine result of oversmoothing; rather, it occurs due to a zero-collapsing phenomenon."

    By the paper's own Propositions 1 and 2, oversmoothing is defined as convergence to a vector c, and the zero vector is explicitly allowed as a special case. Moreover, all three similarity measures used in Figure 3 (mu_cai, mu_wu, mu_rusch) vanish when embeddings converge to zero, so the zero limit already satisfies the prior oversmoothing definitions the paper quotes. The paper then introduces 'zero-collapsing' as the same zero limit and asserts it is 'not a genuine result of oversmoothing.' This assertion is not derived from the experiments, which only show that the zero limit occurs; it is fixed by the new terminology.

full rationale

The paper contains no fitted-parameter-as-prediction and no load-bearing self-citation; the 1,024-layer residual+BN experiments and the uniform-feature recovery experiment are genuine external evidence. However, the central conceptual step — that prior work confused zero-collapsing with oversmoothing — is a relabeling. Propositions 1 and 2 include the zero vector as an admissible limit, and mu_cai, mu_wu, and mu_rusch all have the all-zero embedding as a fixed point, so the decay curves and histograms cannot separate 'oversmoothing' from 'zero-collapsing.' The paper simply names the zero limit 'zero-collapsing' and then asserts it is not genuine oversmoothing; that conclusion is built into the definition. The aggregation-marginality conclusion also inherits this confound because the same similarity measures are used to rank A versus sigma+T. Independent evidence keeps the paper from being entirely circular, hence 6 rather than 8 or 10.

Assumptions & free parameters 2 free parameters · 4 assumptions · 1 invented entities

The central claim rests on (i) the three-step factorization, (ii) the validity of prior similarity measures, (iii) the assumption that untrained Glorot-initialized forward passes reveal the cause of training failure, and (iv) the restriction to ReLU and GCN/GAT. No fitted parameters are introduced by the paper; hyperparameters are standard.

free parameters (2)
  • hidden_dim = 32 (decomposition), 64 (training)
    Standard width choice; fixed across experiments, not fitted to the central claim.
  • learning_rate = searched over {0.001, 0.005, 0.01}
    Hyperparameter search with validation selection; affects results but is a standard practice.
assumptions (4)
  • domain assumption The layer update X(ℓ+1)=σ(ÂX(ℓ)W(ℓ)) fully decomposes into aggregation, transformation, and activation steps (Eqs. 2-4).
    Adopted as the analysis framework in Section 2.1; the stepwise ablation in Section 3.2 depends on this factorization.
  • domain assumption The similarity measures µcai, µwu, and µrusch from prior work are valid proxies for oversmoothing.
    Used in Section 3.2 and Appendix A to quantify oversmoothing; the attribution of decay to transformation/activation rests on these measures.
  • ad hoc to paper Untrained forward passes with Glorot-initialized weights reveal the cause of training failure in deep GNNs.
    Section 3.2 measures similarity without training because 128-layer GNNs cannot be trained (Appendix D). Appendix C.5 shows He initialization changes the decay rates, making this assumption load-bearing and only partially justified.
  • domain assumption ReLU is the relevant activation, and the two asymptotic convergence regimes in Propositions 1 and 2 exhaust the oversmoothing phenomena.
    Section 2.2 restricts the analysis to ReLU and GCN/GAT; the zero-collapsing distinction is defined relative to these premises.
invented entities (1)
  • Zero-collapsing independent evidence
    purpose: A new label for the convergence of node embeddings to the zero vector, distinguished from oversmoothing.
    Supported by histograms (Fig. 4) showing feature values collapse to zero within a few layers; the concept is a renaming of a known MLP phenomenon (dying ReLU / mean-collapse).

how reviews work

0 comments
Cite this review

Pith. "Pith review of The Oversmoothing Fallacy: A Misguided Narrative in GNN Research." pith.science (2026). https://pith.science/paper/PWVYR7NM

@misc{pith2026250604653,
  author       = {Pith},
  title        = {Pith review of: The Oversmoothing Fallacy: A Misguided Narrative in GNN Research},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/PWVYR7NM}},
  note         = {Machine review of arXiv:2506.04653}
}
read the original abstract

Oversmoothing has been recognized as a main obstacle to building deep Graph Neural Networks (GNNs), limiting the performance. This position paper argues that the influence of oversmoothing has been overstated and advocates for a further exploration of deep GNN architectures. Given the three core operations of GNNs, aggregation, linear transformation, and non-linear activation, we show that prior studies have mistakenly confused oversmoothing with the vanishing gradient, caused by transformation and activation rather than aggregation. Our finding challenges prior beliefs about oversmoothing being unique to GNNs. Furthermore, we demonstrate that classical solutions such as skip connections and normalization enable the successful stacking of deep GNN layers without performance degradation. Our results clarify misconceptions about oversmoothing and shed new light on the potential of deep GNNs.

Figures

Figures reproduced from arXiv: 2506.04653 by the authors.

Figure 1
Figure 1. Changes in node embeddings across GCN layers, where all node features are initialized to [PITH_FULL_IMAGE:figures/full_fig_p002_1.png] view at source ↗
Figure 2
Figure 2. Similarity between nodes across layers, reported in Rusch et al. [32]. However, interpreting oversmoothing solely from this per￾spective can be misleading, dangerous, and inappropriate, as there are fundamentally different definitions of over￾smoothing as we have shown in Propositions 1 and 2, and the misconception only represents Proposition 2. We investigate the reasons why researchers became con￾fused about overs… view at source ↗
Figure 3
Figure 3. Oversmoothing levels measured by three metrics across 128-layer GCN and GAT models [PITH_FULL_IMAGE:figures/full_fig_p005_3.png] view at source ↗
Figures from the paper (5 more)
Figure 4
Figure 4. Figure 4: Histogram of node embedding values X(ℓ) from four selected layers. All features are collapsed to zero within the first few layers. decay rate is much lower than that of models including activation. We present additional results on other datasets in Appendix C.1, where …
Figure 5
Figure 5. Figure 5: Test accuracy of models with all node features initialized to the same vector across nodes. The cross-hatched bar uses the original features X, while others use uniform features Xone. To make the situation more straightforward, we conduct an experiment on node classifi…
Figure 6
Figure 6. Figure 6: Effectiveness evaluation of skip connections and batch normalization on GCN. We report [PITH_FULL_IMAGE:figures/full_fig_p008_6.png]
Figure 7
Figure 7. Figure 7: Test accuracy of GCN with different over-smoothing mitigation methods. We evaluate the [PITH_FULL_IMAGE:figures/full_fig_p009_7.png]
Figure 8
Figure 8. Figure 8: Test accuracy of GCNs with uniform fea￾tures Xone on two datasets, Cora and PubMed. A star indicates the best accuracy. To support our hypothesis, we provide addi￾tional interesting results in [PITH_FULL_IMAGE:figures/full_fig_p009_8.png]

Discussion (0). Sign in to comment.

Reference graph

Works this paper leans on

48 extracted references · 41 canonical work pages

  1. [1]

    ChainerMN: Scalable Distributed Deep Learning Framework

    Takuya Akiba, Keisuke Fukuda, and Shuji Suzuki. ChainerMN: Scalable Distributed Deep Learning Framework. In Proceedings of Workshop on ML Systems in The Thirty-first Annual Conference on Neural Information Processing Systems (NIPS), 2017. 6

  2. [2]

    On vanishing gradients, over- smoothing, and over-squashing in gnns: Bridging recurrent and graph learning

    Álvaro Arroyo, Alessio Gravina, Benjamin Gutteridge, Federico Barbero, Claudio Gallicchio, Xiaowen Dong, Michael Bronstein, and Pierre Vandergheynst. On vanishing gradients, over- smoothing, and over-squashing in gnns: Bridging recurrent and graph learning. arXiv preprint arXiv:2502.10818, 2025. 9

  3. [3]

    Beyond low-frequency information in graph convolutional networks

    Deyu Bo, Xiao Wang, Chuan Shi, and Huawei Shen. Beyond low-frequency information in graph convolutional networks. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 35, pages 3950–3957, 2021. 9

  4. [4]

    A note on over-smoothing for graph neural networks

    Chen Cai and Yusu Wang. A note on over-smoothing for graph neural networks. In ICML Graph Representation Learning and Beyond (GRL+) Workshop, 2020. 3, 4, 14

  5. [5]

    Grand: Graph neural diffusion

    Ben Chamberlain, James Rowbottom, Maria I Gorinova, Michael Bronstein, Stefan Webb, and Emanuele Rossi. Grand: Graph neural diffusion. In Marina Meila and Tong Zhang, editors, Proceedings of the 38th International Conference on Machine Learning, volume 139 of Proceedings of Machine Learning Research, pages 1407–1418. PMLR, 18–24 Jul 2021. 3, 4

  6. [6]

    Simple and deep graph convolutional networks

    Ming Chen, Zhewei Wei, Zengfeng Huang, Bolin Ding, and Yaliang Li. Simple and deep graph convolutional networks. In Hal Daumé III and Aarti Singh, editors, Proceedings of the 37th International Conference on Machine Learning, volume 119 of Proceedings of Machine Learning Research, pages 1725–1735. PMLR, 13–18 Jul 2020. 1, 4, 6

  7. [7]

    Long range graph benchmark

    Vijay Prakash Dwivedi, Ladislav Rampášek, Mikhail Galkin, Ali Parviz, Guy Wolf, Anh Tuan Luu, and Dominique Beaini. Long range graph benchmark. In Thirty-sixth Conference on Neural Information Processing Systems Datasets and Benchmarks Track, 2022. 9

  8. [8]

    PDE-GCN: Novel architectures for graph neural networks motivated by partial differential equations

    Moshe Eliasof, Eldad Haber, and Eran Treister. PDE-GCN: Novel architectures for graph neural networks motivated by partial differential equations. In A. Beygelzimer, Y . Dauphin, P. Liang, and J. Wortman Vaughan, editors,Advances in Neural Information Processing Systems, 2021. 4

Show all 48 references
  1. [9]

    Dropmes- sage: Unifying random dropping for graph neural networks.Proceedings of the AAAI Conference on Artificial Intelligence, 37(4):4267–4275, Jun

    Taoran Fang, Zhiqing Xiao, Chunping Wang, Jiarong Xu, Xuan Yang, and Yang Yang. Dropmes- sage: Unifying random dropping for graph neural networks.Proceedings of the AAAI Conference on Artificial Intelligence, 37(4):4267–4275, Jun. 2023. doi: 10.1609/aaai.v37i4.25545. 1, 4

  2. [10]

    Matthias Fey and Jan E. Lenssen. Fast graph representation learning with PyTorch Geometric. In ICLR Workshop on Representation Learning on Graphs and Manifolds, 2019. 6

  3. [11]

    Understanding the difficulty of training deep feedforward neural networks

    Xavier Glorot and Yoshua Bengio. Understanding the difficulty of training deep feedforward neural networks. In Proceedings of the thirteenth international conference on artificial intel- ligence and statistics, pages 249–256. JMLR Workshop and Conference Proceedings, 2010. 6

  4. [12]

    Inductive representation learning on large graphs

    Will Hamilton, Zhitao Ying, and Jure Leskovec. Inductive representation learning on large graphs. In I. Guyon, U. V on Luxburg, S. Bengio, H. Wallach, R. Fergus, S. Vishwanathan, and R. Garnett, editors, Advances in Neural Information Processing Systems, volume 30. Curran Asso...

  5. [13]

    Delving deep into rectifiers: Surpassing human-level performance on imagenet classification

    Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Delving deep into rectifiers: Surpassing human-level performance on imagenet classification. In Proceedings of the IEEE international conference on computer vision, pages 1026–1034, 2015. 6

  6. [14]

    Bernnet: Learning arbitrary graph spectral filters via bernstein approximation

    Mingguo He, Zhewei Wei, Zengfeng Huang, and Hongteng Xu. Bernnet: Learning arbitrary graph spectral filters via bernstein approximation. In A. Beygelzimer, Y . Dauphin, P. Liang, and J. Wortman Vaughan, editors,Advances in Neural Information Processing Systems, 2021. 9

  7. [15]

    Open graph benchmark: Datasets for machine learning on graphs

    Weihua Hu, Matthias Fey, Marinka Zitnik, Yuxiao Dong, Hongyu Ren, Bowen Liu, Michele Catasta, and Jure Leskovec. Open graph benchmark: Datasets for machine learning on graphs. arXiv preprint arXiv:2005.00687, 2020. 7, 8 10

  8. [16]

    Not too little, not too much: a theoretical analysis of graph (over)smoothing

    Nicolas Keriven. Not too little, not too much: a theoretical analysis of graph (over)smoothing. In The First Learning on Graphs Conference, 2022. 3, 8

  9. [17]

    Kipf and Max Welling

    Thomas N. Kipf and Max Welling. Semi-supervised classification with graph convolutional networks. In International Conference on Learning Representations, 2017. 3, 8

  10. [18]

    Deepgcns: Can gcns go as deep as cnns? In Proceedings of the IEEE/CVF international conference on computer vision, pages 9267–9276, 2019

    Guohao Li, Matthias Muller, Ali Thabet, and Bernard Ghanem. Deepgcns: Can gcns go as deep as cnns? In Proceedings of the IEEE/CVF international conference on computer vision, pages 9267–9276, 2019. 4, 7, 8, 9

  11. [19]

    Training graph neural networks with 1000 layers

    Guohao Li, Matthias Müller, Bernard Ghanem, and Vladlen Koltun. Training graph neural networks with 1000 layers. In International conference on machine learning, pages 6437–6449. PMLR, 2021. 8, 9

  12. [20]

    Deeper insights into graph convolutional networks for semi-supervised learning

    Qimai Li, Zhichao Han, and Xiao-Ming Wu. Deeper insights into graph convolutional networks for semi-supervised learning. In Proceedings of the Thirty-Second AAAI Conference on Artificial Intelligence and Thirtieth Innovative Applications of Artificial Intelligence Conference a...

  13. [21]

    Skipnode: On alleviating performance degradation for deep graph convolutional networks

    Weigang Lu, Yibing Zhan, Binbin Lin, Ziyu Guan, Liu Liu, Baosheng Yu, Wei Zhao, Yaming Yang, and Dacheng Tao. Skipnode: On alleviating performance degradation for deep graph convolutional networks. IEEE Transactions on Knowledge and Data Engineering , 36(11): 7030–7043, 2024. ...

  14. [22]

    Classic GNNs are strong baselines: Reassessing GNNs for node classification

    Yuankai Luo, Lei Shi, and Xiao-Ming Wu. Classic GNNs are strong baselines: Reassessing GNNs for node classification. In The Thirty-eight Conference on Neural Information Processing Systems Datasets and Benchmarks Track, 2024. 9

  15. [23]

    Image-based recommendations on styles and substitutes

    Julian McAuley, Christopher Targett, Qinfeng Shi, and Anton Van Den Hengel. Image-based recommendations on styles and substitutes. In Proceedings of the 38th international ACM SIGIR conference on research and development in information retrieval, pages 43–52, 2015. 7

  16. [24]

    Graph neural networks exponentially lose expressive power for node classification

    Kenta Oono and Taiji Suzuki. Graph neural networks exponentially lose expressive power for node classification. In International Conference on Learning Representations, 2020. 1, 3, 4, 6, 8, 14

  17. [25]

    Mitigating oversmoothing through reverse process of GNNs for heterophilic graphs

    Moonjeong Park, Jaeseung Heo, and Dongwoo Kim. Mitigating oversmoothing through reverse process of GNNs for heterophilic graphs. In Ruslan Salakhutdinov, Zico Kolter, Katherine Heller, Adrian Weller, Nuria Oliver, Jonathan Scarlett, and Felix Berkenkamp, editors,Proceedings of...

  18. [26]

    Geom-gcn: Geometric graph convolutional networks

    Hongbin Pei, Bingzhe Wei, Kevin Chen-Chuan Chang, Yu Lei, and Bo Yang. Geom-gcn: Geometric graph convolutional networks. arXiv preprint arXiv:2002.05287, 2020. 9

  19. [27]

    Multi-track message passing: Tackling oversmoothing and oversquashing in graph learning via preventing heterophily mixing

    Hongbin Pei, Yu Li, Huiqi Deng, Jingxin Hai, Pinghui Wang, Jie Ma, Jing Tao, Yuheng Xiong, and Xiaohong Guan. Multi-track message passing: Tackling oversmoothing and oversquashing in graph learning via preventing heterophily mixing. In Ruslan Salakhutdinov, Zico Kolter, Kather...

  20. [28]

    A critical look at evaluation of gnns under heterophily: Are we really making progress? In The Eleventh International Conference on Learning Representations, 2023

    Oleg Platonov, Denis Kuznedelev, Michael Diskin, Artem Babenko, and Liudmila Prokhorenkova. A critical look at evaluation of gnns under heterophily: Are we really making progress? In The Eleventh International Conference on Learning Representations, 2023. 5, 7, 9, 15

  21. [29]

    Dropedge: Towards deep graph convolutional networks on node classification

    Yu Rong, Wenbing Huang, Tingyang Xu, and Junzhou Huang. Dropedge: Towards deep graph convolutional networks on node classification. In International Conference on Learning Representations, 2020. 1, 4, 6, 7, 8

  22. [30]

    Multi-scale attributed node embedding

    Benedek Rozemberczki, Carl Allen, and Rik Sarkar. Multi-scale attributed node embedding. Journal of Complex Networks, 9(2):cnab014, 2021. 5, 7 11

  23. [31]

    Graph-coupled oscillator networks

    T Konstantin Rusch, Ben Chamberlain, James Rowbottom, Siddhartha Mishra, and Michael Bronstein. Graph-coupled oscillator networks. In International Conference on Machine Learning, pages 18888–18909. PMLR, 2022. 4, 6

  24. [32]

    A survey on oversmoothing in graph neural networks

    T Konstantin Rusch, Michael M Bronstein, and Siddhartha Mishra. A survey on oversmoothing in graph neural networks. arXiv preprint arXiv:2303.10993, 2023. 4, 6, 8, 9, 14

  25. [33]

    Konstantin Rusch, Benjamin Paul Chamberlain, Michael W

    T. Konstantin Rusch, Benjamin Paul Chamberlain, Michael W. Mahoney, Michael M. Bronstein, and Siddhartha Mishra. Gradient gating for deep multi-rate learning on graphs. In The Eleventh International Conference on Learning Representations, 2023. 4, 6

  26. [34]

    Collective classification in network data

    Prithviraj Sen, Galileo Namata, Mustafa Bilgic, Lise Getoor, Brian Galligher, and Tina Eliassi- Rad. Collective classification in network data. AI magazine, 29(3):93–93, 2008. 5, 7

  27. [35]

    Ordered GNN: Ordering message passing to deal with heterophily and over-smoothing

    Yunchong Song, Chenghu Zhou, Xinbing Wang, and Zhouhan Lin. Ordered GNN: Ordering message passing to deal with heterophily and over-smoothing. In The Eleventh International Conference on Learning Representations, 2023. 4

  28. [36]

    Simple and deep graph attention networks

    Guangxin Su, Hanchen Wang, Ying Zhang, Wenjie Zhang, and Xuemin Lin. Simple and deep graph attention networks. Knowledge-Based Systems, 293:111649, 2024. ISSN 0950-7051. doi: https://doi.org/10.1016/j.knosys.2024.111649. 1, 4

  29. [37]

    Grand++: Graph neural diffusion with a source term

    Matthew Thorpe, Tan Minh Nguyen, Heidi Xia, Thomas Strohmer, Andrea Bertozzi, Stanley Osher, and Bao Wang. Grand++: Graph neural diffusion with a source term. In International Conference on Learning Representation (ICLR), 2022. 3, 4

  30. [38]

    Chainer: a next-generation open source framework for deep learning

    Seiya Tokui, Kenta Oono, Shohei Hido, and Justin Clayton. Chainer: a next-generation open source framework for deep learning. In Proceedings of Workshop on Machine Learning Systems (LearningSys) in The Twenty-ninth Annual Conference on Neural Information Processing Systems (NI...

  31. [39]

    Chainer: A deep learning framework for accelerating the research cycle

    Seiya Tokui, Ryosuke Okuta, Takuya Akiba, Yusuke Niitani, Toru Ogawa, Shunta Saito, Shuji Suzuki, Kota Uenishi, Brian V ogel, and Hiroyuki Yamazaki Vincent. Chainer: A deep learning framework for accelerating the research cycle. In Proceedings of the 25th ACM SIGKDD Internatio...

  32. [40]

    Visualizing data using t-sne

    Laurens Van der Maaten and Geoffrey Hinton. Visualizing data using t-sne. Journal of machine learning research, 9(11), 2008. 2

  33. [41]

    Graph attention networks

    Petar Veliˇckovi´c, Guillem Cucurull, Arantxa Casanova, Adriana Romero, Pietro Liò, and Yoshua Bengio. Graph attention networks. In International Conference on Learning Representations,

  34. [42]

    Simplifying graph convolutional networks

    Felix Wu, Amauri Souza, Tianyi Zhang, Christopher Fifty, Tao Yu, and Kilian Weinberger. Simplifying graph convolutional networks. In International conference on machine learning, pages 6861–6871. Pmlr, 2019. 5

  35. [43]

    Demystifying oversmoothing in attention-based graph neural networks

    Xinyi Wu, Amir Ajorlou, Zihui Wu, and Ali Jadbabaie. Demystifying oversmoothing in attention-based graph neural networks. In Thirty-seventh Conference on Neural Information Processing Systems, 2023. 1, 3, 4, 8, 14, 19

  36. [44]

    A non-asymptotic analysis of oversmoothing in graph neural networks

    Xinyi Wu, Zhengdao Chen, William Wei Wang, and Ali Jadbabaie. A non-asymptotic analysis of oversmoothing in graph neural networks. In The Eleventh International Conference on Learning Representations, 2023. 9

  37. [45]

    Model degradation hinders deep graph neural networks

    Wentao Zhang, Zeang Sheng, Ziqi Yin, Yuezihan Jiang, Yikuan Xia, Jun Gao, Zhi Yang, and Bin Cui. Model degradation hinders deep graph neural networks. In Proceedings of the 28th ACM SIGKDD Conference on Knowledge Discovery and Data Mining, 2022. 4, 9

  38. [46]

    Pairnorm: Tackling oversmoothing in gnns

    Lingxiao Zhao and Leman Akoglu. Pairnorm: Tackling oversmoothing in gnns. In International Conference on Learning Representations, 2020. 1, 4, 6, 8 12

  39. [47]

    Dirichlet energy constrained learning for deep graph neural networks

    Kaixiong Zhou, Xiao Huang, Daochen Zha, Rui Chen, Li Li, Soo-Hyun Choi, and Xia Hu. Dirichlet energy constrained learning for deep graph neural networks. In A. Beygelzimer, Y . Dauphin, P. Liang, and J. Wortman Vaughan, editors, Advances in Neural Information Processing System...

  40. [48]

    Understanding and resolving performance degradation in deep graph convolutional networks

    Kuangqi Zhou, Yanfei Dong, Kaixin Wang, Wee Sun Lee, Bryan Hooi, Huan Xu, and Jiashi Feng. Understanding and resolving performance degradation in deep graph convolutional networks. In Proceedings of the 30th ACM International Conference on Information & Knowledge Management, p...

Pith tools

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