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 →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The 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.
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
- 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.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
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)
- [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.
- [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.
- [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.
- [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.
- [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)
- [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.
- [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.
- [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.
- [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.
- [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
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.
-
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
free parameters (2)
- hidden_dim =
32 (decomposition), 64 (training)
- learning_rate =
searched over {0.001, 0.005, 0.01}
assumptions (4)
- domain assumption The layer update X(ℓ+1)=σ(ÂX(ℓ)W(ℓ)) fully decomposes into aggregation, transformation, and activation steps (Eqs. 2-4).
- domain assumption The similarity measures µcai, µwu, and µrusch from prior work are valid proxies for oversmoothing.
- ad hoc to paper Untrained forward passes with Glorot-initialized weights reveal the cause of training failure in deep GNNs.
- domain assumption ReLU is the relevant activation, and the two asymptotic convergence regimes in Propositions 1 and 2 exhaust the oversmoothing phenomena.
invented entities (1)
-
Zero-collapsing
independent evidence
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 from the paper (5 more)
Reference graph
Works this paper leans on
-
[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
work page 2017
-
[2]
Á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
arXiv 2025
-
[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
work page 2021
-
[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
work page 2020
-
[5]
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
work page 2021
-
[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
work page 2020
-
[7]
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
work page 2022
-
[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
work page 2021
Show all 48 references
-
[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
2023 doi
-
[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
2019
-
[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
2010
-
[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...
2017
-
[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
2015
-
[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
2021
-
[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
2005 arXiv
-
[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
2022
-
[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
2017
-
[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
2019
-
[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
2021
-
[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...
2018
-
[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. ...
2024
-
[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
2024
-
[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
2015
-
[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
2020
-
[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...
2024
-
[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
2002 arXiv
-
[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...
2024
-
[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
2023
-
[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
2020
-
[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
2021
-
[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
2022
-
[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
2023 arXiv
-
[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
2023
-
[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
2008
-
[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
2023
-
[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
2024
-
[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
2022
-
[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...
2015
-
[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...
2002
-
[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
2008
-
[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,
-
[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
2019
-
[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
2023
-
[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
2023
-
[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
2022
-
[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
2020
-
[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...
2021
-
[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...
2021
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.