REVIEW 4 major objections 5 minor 2 cited by
KAA: Kolmogorov-Arnold Attention for Enhancing Attentive Graph Neural Networks
T0 review · 4 major / 5 minor · reviewed 2026-08-10 · deepseek-v4-flash
Pith's one-line read The paper claims that KAN-based attention scoring has nearly unlimited ranking expressive power under bounded parameters and consistently outperforms linear and MLP scoring in attentive GNNs.
desk verdict Useful drop-in attention upgrade with a solid empirical story, but the theoretical expressiveness claims rest on a broken inequality and a contrived instance. 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
Central object: the unified scoring function $s(h_i,h_j) = \Psi \circ \mathrm{AF}(h_i,h_j)$, where $\mathrm{AF}$ is a fixed, non-learnable alignment (concatenation, absolute difference, or dot product) and $\Psi$ is the learnable score mapping. KAA sets $\Psi$ to a single-layer KAN whose univariate functions are sums of modified zero-order B-splines $\phi_k(x) = \sum_{l=1}^d c_{k,l} B^*_{k,l}(x)$. The load-bearing mechanism is the lookup-table effect: with grid size $d$, a row of the alignment matrix that contains exactly one coordinate divisible by $d$ activates exactly one spline coefficient, so the $d^2$ coefficients give one free parameter per row, enough to encode any target score assignment and hence any ranking of the $N=d^2$ nodes.
What would settle it
Collect the alignment vectors $\mathrm{AF}(h_i,h_j)$ from a trained backbone on a benchmark dataset and test whether each row contains exactly one coordinate divisible by the B-spline grid size $d$, as Appendix A.7 requires; if real rows are duplicate or lack this pattern, Proposition 3's bound does not apply to them. Independently, run KAA against each original scorer with matched parameter counts and the same hyperparameter search; the paper's universal empirical claim would be contradicted by any dataset on which a KAA-enhanced model does not beat its backbone.
Extended reading notes
Core claim
On the paper's own terms, the central discovery is that the score mapping inside attentive-GNN attention—not the feature transformation—is the limiting component, and that replacing it with a Kolmogorov-Arnold network removes the limit. The paper proves for its constructed alignment matrix $P \in \mathbb{R}^{N\times d}$ that a linear scorer satisfies $\mathrm{MRD}(S_{\mathrm{LT}}, P) \ge \sqrt{\frac{1}{12}(N^3 - N - d^3 + 3d^2 - 2d)}$, that a two-layer MLP scorer has both upper and lower bounds of the same order, and that a single-layer KAN with modified zero-order B-splines satisfies $\mathrm{MRD}(S_{\mathrm{KAA}}, P) \le \delta$ for any $\delta > 0$, giving Theorem 1's ordering $\mathrm{MRD}(S_{\mathrm{KAA}}, P) \le \mathrm{MRD}(S_{\mathrm{MLP}}, P) \le \mathrm{MRD}(S_{\mathrm{LT}}, P)$. Empirically, KAA versions of GAT, GLCN, CFGAT, GT, and SAN outperform their originals on every evaluated node- and graph-level dataset, with average node-task gains around 1.6%, graph-task gains around 7.7%, and individual gains exceeding 20%.
Load-bearing premise
The theoretical advantage is proven for one specially structured set of node-pair inputs, namely a circulant alignment matrix in which each row activates exactly one spline coefficient, and the paper concedes that for other inputs, such as all-identical rows, every scoring function collapses to the same ranking.
Editorial extensions
If this is right
- KAA can be applied to nearly any attentive GNN by replacing only the learnable score mapping, leaving the alignment function, aggregation, and training pipeline unchanged.
- At matched or slightly lower parameter counts, KAA scorers have strictly smaller maximum ranking distance than linear and MLP scorers on the paper's construction, so the theoretical expressive-power ordering favors KAA.
- KAA-enhanced GAT, GLCN, CFGAT, GT, and SAN beat their original versions on all evaluated datasets, with average improvements of about 1.6% on node-level tasks and 7.7% on graph-level tasks, and individual gains over 20%.
- KAA also improves advanced attentive GNNs such as SuperGAT, HAT, NAGphormer, and SGFormer, so the benefit is not limited to the basic backbones.
- The success locates the bottleneck in the score mapping rather than in the feature transformation, complementing earlier KAN-GNN work that used KANs to transform node features.
Reading between the lines
- Editorial inference: the theory's lookup-table proof depends on the B-spline grid lining up with the alignment matrix; on real learned representations that lack this exact divisibility structure, the provable MRD advantage may shrink, which is an empirical question the paper does not resolve.
- Editorial inference: if the unified scoring view is right, the same KAN replacement could be tested in other attention architectures beyond graphs, such as sequence Transformers, where the dot-product score is also a low-capacity linear mapping.
- Editorial inference: a direct extension would be to measure, on real trained models, how close the matrix of alignment vectors is to the paper's circulant template, and to correlate that closeness with the size of the observed KAA gain.
- Editorial inference: the MRD metric itself could serve as a diagnostic for scoring functions in retrieval and ranking tasks, where what matters is exactly the ordering induced by a learned score.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes Kolmogorov-Arnold Attention (KAA), a drop-in replacement for the scoring function in attentive GNNs, and introduces Maximum Ranking Distance (MRD) as a metric for the expressive power of scoring functions. The authors claim a theoretical hierarchy MRD(S_KAA) ≤ MRD(S_MLP) ≤ MRD(S_LT) under limited parameters, and support this with extensive node- and graph-level experiments on five backbone architectures showing consistent performance gains, some exceeding 20%.
Significance. If the theoretical hierarchy were established, the work would provide a principled explanation for why KAN-based scoring can outperform linear and MLP scoring in attentive GNNs, and the empirical study is a useful contribution in its own right. The experiments are detailed, cover multiple backbones and tasks, and include comparisons against GATv2 and other KAN-GNN variants. The code is released. However, the central theoretical claim is not proven as written: the proof of Proposition 1 contains an invalid max/min exchange, and Proposition 3's near-zero MRD is achieved by a lookup-table construction tailored to a specific alignment matrix, so the advertised 'nearly infinite expressive power' is an overstatement.
major comments (4)
- [Appendix A.5, Eqs. (32)–(34)] The proof of Proposition 1 moves the max over π′ inside the min over s′ and claims MRD ≥ min_{s′} sqrt(max_{π′} Σ (s′(P_i)−π′^{-1}(i))^2). For a max over one variable and a min over another, the valid inequality is max min ≤ min max, so the displayed direction is unjustified and can fail on simple finite examples. This invalidates the lower bound in Eq. (14) for linear-transformation attention. Since Theorem 1 relies on this bound to compare MRD(S_MLP) with MRD(S_LT), the proposed hierarchy is not established as written.
- [Appendix A.5, Eq. (35)–(38)] Even after the exchange, the evaluation of min_{a,b} max_{π′} Σ (a i + b − π′^{-1}(i))^2 is not carried out correctly: the authors first fix the 'uniformly distributed' worst-case permutation and then minimize over a and b, which computes something like max_{π′} min_{a,b} rather than the required min_{a,b} max_{π′}. The minimax value of this quantity is not derived, so the closed-form expression in Proposition 1 is unsupported regardless of the exchange issue.
- [Appendix A.7, Proposition 3 and Eq. (70)–(78)] The near-zero MRD for KAA is obtained by a construction where the alignment matrix P is the first d columns of an N×N circulant matrix with N=d^2 and the zero-order B-spline grid is chosen so that each row of P activates exactly one of the d^2 coefficients. This makes the KAN a lookup table with one learnable parameter per input row—i.e., the scoring function can memorize any ranking on this specific P. The paper itself concedes in Appendix A.4 that the composition of P controls the analysis (e.g., if P=1, all scoring functions are identical). The abstract's unqualified claim of 'nearly infinite expressive power' is therefore not supported by the theory; at most, the construction shows that a specially designed KAN can realize arbitrary rankings on a specially designed alignment matrix.
- [Theorem 1, Section 4.2.3] The ordering MRD(S_KAA, P) ≤ MRD(S_MLP, P) ≤ MRD(S_LT, P) depends on Proposition 1's lower bound, Proposition 2's bounds, and Proposition 3's upper bound. Since Proposition 1's lower bound is invalid for the reasons above, the ordering is not proven. A correct lower bound for linear-transformation attention might be smaller than the MLP upper bound, in which case the hierarchy could fail. The authors should either provide a valid proof of the bound or explicitly restrict the theoretical claims to the empirical finding that KAA improves performance in practice.
minor comments (5)
- [Propositions 1–3 and Appendix A.7] There is a recurring typo: 'matirx' should be 'matrix' in the statements of Propositions 1, 2, and 3.
- [Appendix A.6, Eq. (48)] The displayed formula has an extra parenthesis: 'a − π′^{-1}(i))2' should be '(a − π′^{-1}(i))^2'.
- [Table 3 and Section 5.3] The 'Avg Imp' row mixes classification accuracies (higher is better) with regression MAE values (lower is better). The reported positive average improvements for regression tasks should be clarified as decreases in MAE, otherwise the 'improvement' sign convention is inconsistent.
- [Section 4.2.3, paragraph before Proposition 3] The phrase 's(hi, hj) = Pd k=1' is missing proper typesetting; the sum should be written as s(hi, hj) = Σ_{k=1}^d φ_k(AF(hi, hj)_k).
- [Abstract and Section 1] The abstract states 'nearly infinite expressive power' without the qualifications introduced in Appendix A.4 and A.7 (the specific circulant alignment matrix and the lookup-table-style B-spline grid). Please add a caveat to the abstract or intro so the claim matches the proof conditions.
Circularity Check
KAA's claimed 'nearly infinite' expressive power is built into the co-designed circulant P and B-spline grid, making the headline theoretical result a lookup-table construction; the experiments are independent.
-
self definitional
[Appendix A.7, proof of Proposition 3; abstract's 'nearly infinite expressive power' claim]
"In our assumption, we have N = d^2, and according to Formula 22, the elements in P take values from [1, N]. Therefore, the grid size of B∗(·) we used is also d... For any Pj, its d-dimensional values are composed of d consecutive integers, so there exists exactly one k ∈ [1, d] that satisfies d | Pj,k. Therefore, only one B∗k(·) is activated... s(Pj) = cd−β,α+1... for any permutationπ ∈ Π, we can find a group ofcd−β,α+1 = π′−1(αd + β + 1) such that MRD(SKAA, P) can be made arbitrarily small."
The proof gives the KAN d^2 B-spline coefficients and then chooses P (first d columns of a circulant matrix with N=d^2) and grid size d so that row j=αd+β+1 activates exactly one coefficient, c_{d−β,α+1}. The bound MRD(S_KAA,P)≤δ is obtained by setting that coefficient equal to the target rank π'^{-1}(j); the inner minimization is then zero for every π'. This is a per-row lookup table: the 'expressive power' is one free parameter per ranked item, which is the input of the construction, not a derived property of KAN's compositional form. The paper itself concedes in Appendix A.4 that 'the composition of the P matrix has a significant impact on subsequent analysis...
full rationale
The empirical part of the paper is not circular: KAA variants are compared against original backbones on held-out test splits, with no fitted parameter relabeled as a prediction. The self-citations in the references (e.g., Fang et al. 2024, Sun et al. 2022/2024) are contextual and not load-bearing; the formal comparisons use Brody et al. (2021) and standard KAN references, not a self-citation chain. The circularity burden is confined to the theoretical expressive-power claim. Proposition 3's proof constructs a special alignment matrix P and a matching B-spline grid so that the KAN reduces to an arbitrary lookup table with one coefficient per row; the result MRD→0 is therefore equivalent by construction to giving one free parameter per data point. The abstract then states this instance-dependent construction as an unqualified property of KAA. A separate mathematical defect, the max/min exchange in Appendix A.5 (Eqs. 32–34), is a correctness problem rather than circularity and is not scored here; it further weakens the MRD hierarchy but does not change the circularity finding.
Assumptions & free parameters
free parameters (3)
- Analysis instance P (first d columns of an N by N circulant matrix, N = d squared) =
N = d squared
- Zero-order B-spline grid size d =
d (grid matching the multiples-of-d structure of P)
- Per-dataset KAN and backbone hyperparameters =
grid size, spline order, layers in {1,2,4,8}, {1,2,3}, {2,3,4} plus layers, hidden dim, heads, dropout, learning rate…
assumptions (5)
- standard math Kolmogorov-Arnold representation theorem (smooth multivariate functions decompose into sums of univariate compositions)
- ad hoc to paper A maximin/minimax exchange: max over target rankings of min over scoring functions is at least min over scoring functions of max over rankings
- standard math Worst-case target rankings assign the ranks of the first N+1-d nodes in alternating extreme order
- ad hoc to paper Replacing the affine post-ReLU column vectors c_i with single-spike vectors z_i cannot increase the achievable ranking error (Appendix A.6)
- domain assumption The circulant first-d-columns matrix P is representative of realistic alignment inputs
Cite this review
Pith. "Pith review of KAA: Kolmogorov-Arnold Attention for Enhancing Attentive Graph Neural Networks." pith.science (2026). https://pith.science/paper/YQYMRKQW
@misc{pith2026250113456,
author = {Pith},
title = {Pith review of: KAA: Kolmogorov-Arnold Attention for Enhancing Attentive Graph Neural Networks},
year = {2026},
howpublished = {\url{https://pith.science/paper/YQYMRKQW}},
note = {Machine review of arXiv:2501.13456}
}
read the original abstract
Graph neural networks (GNNs) with attention mechanisms, often referred to as attentive GNNs, have emerged as a prominent paradigm in advanced GNN models in recent years. However, our understanding of the critical process of scoring neighbor nodes remains limited, leading to the underperformance of many existing attentive GNNs. In this paper, we unify the scoring functions of current attentive GNNs and propose Kolmogorov-Arnold Attention (KAA), which integrates the Kolmogorov-Arnold Network (KAN) architecture into the scoring process. KAA enhances the performance of scoring functions across the board and can be applied to nearly all existing attentive GNNs. To compare the expressive power of KAA with other scoring functions, we introduce Maximum Ranking Distance (MRD) to quantitatively estimate their upper bounds in ranking errors for node importance. Our analysis reveals that, under limited parameters and constraints on width and depth, both linear transformation-based and MLP-based scoring functions exhibit finite expressive power. In contrast, our proposed KAA, even with a single-layer KAN parameterized by zero-order B-spline functions, demonstrates nearly infinite expressive power. Extensive experiments on both node-level and graph-level tasks using various backbone models show that KAA-enhanced scoring functions consistently outperform their original counterparts, achieving performance improvements of over 20% in some cases.
Figures
Forward citations
Cited by 2 Pith papers
-
Improving Memory Efficiency for Training KANs via Meta Learning
MetaKANs generates each KAN activation function from a shared prompt-conditioned meta-learner, cutting trainable parameters toward MLP level while retaining comparable or better accuracy on tested benchmarks.
-
Khan-GCL: Kolmogorov-Arnold Network Based Graph Contrastive Learning with Hard Negatives
Khan-GCL combines KAN encoders with coefficient-based critical feature identification to generate hard negatives and reports state-of-the-art graph classification results.
Reference graph
Works this paper leans on
-
[1]
Deepokan: Deep operator network based on kolmogorov arnold networks for mechanics problems
Diab W Abueidda, Panos Pantidis, and Mostafa E Mobasher. Deepokan: Deep operator network based on kolmogorov arnold networks for mechanics problems. arXiv preprint arXiv:2405.19143, 2024
arXiv 2024
-
[2]
Dropkan: Regularizing kans by masking post-activations
Mohammed Ghaith Altarabichi. Dropkan: Regularizing kans by masking post-activations. arXiv preprint arXiv:2407.13044, 2024 a
arXiv 2024
-
[3]
Rethinking the Function of Neurons in KANs
Mohammed Ghaith Altarabichi. Rethinking the function of neurons in kans. arXiv preprint arXiv:2407.20667, 2024 b
work page Pith review arXiv 2024
-
[4]
Wav-kan: Wavelet kolmogorov-arnold networks
Zavareh Bozorgasl and Hao Chen. Wav-kan: Wavelet kolmogorov-arnold networks. arXiv preprint arXiv:2405.12832, 2024
arXiv 2024
-
[5]
On a constructive proof of kolmogorov’s superposition theorem
J \"u rgen Braun and Michael Griebel. On a constructive proof of kolmogorov’s superposition theorem. Constructive approximation, 30: 0 653--675, 2009
work page 2009
-
[6]
Kagnns: Kolmogorov-arnold networks meet graph learning
Roman Bresson, Giannis Nikolentzos, George Panagopoulos, Michail Chatzianastasis, Jun Pang, and Michalis Vazirgiannis. Kagnns: Kolmogorov-arnold networks meet graph learning. arXiv preprint arXiv:2406.18380, 2024
arXiv 2024
-
[7]
How attentive are graph attention networks? arXiv preprint arXiv:2105.14491, 2021
Shaked Brody, Uri Alon, and Eran Yahav. How attentive are graph attention networks? arXiv preprint arXiv:2105.14491, 2021
arXiv 2021
-
[8]
Chaoqi Chen, Yushuang Wu, Qiyuan Dai, Hong-Yu Zhou, Mutian Xu, Sibei Yang, Xiaoguang Han, and Yizhou Yu. A survey on graph neural networks and graph transformers in computer vision: A task-oriented perspective. IEEE Transactions on Pattern Analysis and Machine Intelligence, 2024
work page 2024
Show all 74 references
-
[9]
Nagphormer: A tokenized graph transformer for node classification in large graphs
Jinsong Chen, Kaiyuan Gao, Gaichao Li, and Kun He. Nagphormer: A tokenized graph transformer for node classification in large graphs. arXiv preprint arXiv:2206.04910, 2022
2022 arXiv
-
[10]
Cfgat: A coarse-to-fine graph attention network for semi-supervised node classification
Dongmei Cui, Fusheng Jin, Rong-Hua Li, and Guoren Wang. Cfgat: A coarse-to-fine graph attention network for semi-supervised node classification. In 2020 IEEE 32nd International Conference on Tools with Artificial Intelligence (ICTAI), pp.\ 1020--1027. IEEE, 2020
2020
-
[11]
Approximation by superpositions of a sigmoidal function
George Cybenko. Approximation by superpositions of a sigmoidal function. Mathematics of control, signals and systems, 2 0 (4): 0 303--314, 1989
1989
-
[12]
P.J. Davis. Circulant Matrices. Monographs and textbooks in pure and applied mathematics. Wiley, 1979. ISBN 9780471057710
1979
-
[13]
Kolmogorov-arnold graph neural networks
Gianluca De Carlo, Andrea Mastropietro, and Aris Anagnostopoulos. Kolmogorov-arnold graph neural networks. arXiv preprint arXiv:2406.18354, 2024
2024 arXiv
-
[14]
A generalization of transformer networks to graphs
Vijay Prakash Dwivedi and Xavier Bresson. A generalization of transformer networks to graphs. arXiv preprint arXiv:2012.09699, 2020
2012 arXiv
-
[15]
Exploring correlations of self-supervised tasks for graphs
Taoran Fang, Wei Zhou, Yifei Sun, Kaiqiao Han, Lvbin Ma, and Yang Yang. Exploring correlations of self-supervised tasks for graphs. arXiv preprint arXiv:2405.04245, 2024
2024 arXiv
-
[16]
Tkan: Temporal kolmogorov-arnold networks
Remi Genet and Hugo Inzirillo. Tkan: Temporal kolmogorov-arnold networks. arXiv preprint arXiv:2405.07344, 2024
2024 arXiv
-
[17]
Automatic chemical design using a data-driven continuous representation of molecules
Rafael G \'o mez-Bombarelli, Jennifer N Wei, David Duvenaud, Jos \'e Miguel Hern \'a ndez-Lobato, Benjam \' n S \'a nchez-Lengeling, Dennis Sheberla, Jorge Aguilera-Iparraguirre, Timothy D Hirzel, Ryan P Adams, and Al \'a n Aspuru-Guzik. Automatic chemical design using a data-...
2018
-
[18]
Inductive representation learning on large graphs
Will Hamilton, Zhitao Ying, and Jure Leskovec. Inductive representation learning on large graphs. Advances in neural information processing systems, 30, 2017
2017
-
[19]
Approximation capabilities of multilayer feedforward networks
Kurt Hornik. Approximation capabilities of multilayer feedforward networks. Neural networks, 4 0 (2): 0 251--257, 1991
1991
-
[20]
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. Advances in neural information processing systems, 33: 0 22118--22133, 2020
2020
-
[21]
Can modifying data address graph domain adaptation? In Proceedings of the 30th ACM SIGKDD Conference on Knowledge Discovery and Data Mining, pp.\ 1131--1142, 2024
Renhong Huang, Jiarong Xu, Xin Jiang, Ruichuan An, and Yang Yang. Can modifying data address graph domain adaptation? In Proceedings of the 30th ACM SIGKDD Conference on Knowledge Discovery and Data Mining, pp.\ 1131--1142, 2024
2024
-
[22]
Extracting training data from molecular pre-trained models
Renhong Huang, Jiarong Xu, Zhiming Yang, Xiang Si, Xin Jiang, Hanyang Yuan, Chunping Wang, and Yang Yang. Extracting training data from molecular pre-trained models. Advances in Neural Information Processing Systems, 37: 0 97948--97971, 2025
2025
-
[23]
Understanding isomorphism bias in graph data sets
Sergei Ivanov, Sergei Sviridov, and Evgeny Burnaev. Understanding isomorphism bias in graph data sets. arXiv preprint arXiv:1910.12091, 2019
1910 arXiv
-
[24]
Semi-supervised learning with graph learning-convolutional networks
Bo Jiang, Ziyan Zhang, Doudou Lin, Jin Tang, and Bin Luo. Semi-supervised learning with graph learning-convolutional networks. 2019 IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), pp.\ 11305--11312, 2019 a
2019
-
[25]
Semi-supervised learning with graph learning-convolutional networks
Bo Jiang, Ziyan Zhang, Doudou Lin, Jin Tang, and Bin Luo. Semi-supervised learning with graph learning-convolutional networks. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pp.\ 11313--11320, 2019 b
2019
-
[26]
Gkan: Graph kolmogorov-arnold networks
Mehrdad Kiamari, Mohammad Kiamari, and Bhaskar Krishnamachari. Gkan: Graph kolmogorov-arnold networks. arXiv preprint arXiv:2406.06470, 2024
2024 arXiv
-
[27]
How to find your friendly neighborhood: Graph attention design with self-supervision
Dongkwan Kim and Alice Oh. How to find your friendly neighborhood: Graph attention design with self-supervision. ICLR, 2021
2021
-
[28]
Variational graph auto-encoders
Thomas N Kipf and Max Welling. Variational graph auto-encoders. In ArXiv, volume abs/1611.07308, 2016
2016 arXiv
-
[29]
Semi-supervised classification with graph convolutional networks
Thomas N Kipf and Max Welling. Semi-supervised classification with graph convolutional networks. In International Conference on Learning Representations, 2017
2017
-
[30]
On the representation of continuous functions of many variables by superposition of continuous functions of one variable and addition
Andrei Nikolaevich Kolmogorov. On the representation of continuous functions of many variables by superposition of continuous functions of one variable and addition. In Doklady Akademii Nauk, volume 114, pp.\ 953--956. Russian Academy of Sciences, 1957
1957
-
[31]
On circulant matrices
Irwin Kra and Santiago R Simanca. On circulant matrices. Notices of the AMS, 59 0 (3): 0 368--377, 2012
2012
-
[32]
Rethinking graph transformers with spectral attention
Devin Kreuzer, Dominique Beaini, Will Hamilton, Vincent L \'e tourneau, and Prudencio Tossou. Rethinking graph transformers with spectral attention. Advances in Neural Information Processing Systems, 34: 0 21618--21629, 2021
2021
-
[33]
Exploring the limitations of kolmogorov-arnold networks in classification: Insights to software training and hardware implementation
Tran Xuan Hieu Le, Thi Diem Tran, Hoai Luan Pham, Vu Trung Duong Le, Tuan Hai Vu, Van Tinh Nguyen, Yasuhiko Nakashima, et al. Exploring the limitations of kolmogorov-arnold networks in classification: Insights to software training and hardware implementation. arXiv preprint ar...
2024 arXiv
-
[34]
Kolmogorov-arnold networks are radial basis function networks
Ziyao Li. Kolmogorov-arnold networks are radial basis function networks. arXiv preprint arXiv:2405.06721, 2024
2024 arXiv
-
[35]
Graph embedding with hierarchical attentive membership
Lu Lin, Ethan Blaser, and Hongning Wang. Graph embedding with hierarchical attentive membership. In Proceedings of the Fifteenth ACM International Conference on Web Search and Data Mining, pp.\ 582--590, 2022
2022
-
[36]
Kan 2.0: Kolmogorov-arnold networks meet science
Ziming Liu, Pingchuan Ma, Yixuan Wang, Wojciech Matusik, and Max Tegmark. Kan 2.0: Kolmogorov-arnold networks meet science. arXiv preprint arXiv:2408.10205, 2024 a
2024 arXiv
-
[37]
Kan: Kolmogorov-arnold networks
Ziming Liu, Yixuan Wang, Sachin Vaidya, Fabian Ruehle, James Halverson, Marin Solja c i \'c , Thomas Y Hou, and Max Tegmark. Kan: Kolmogorov-arnold networks. arXiv preprint arXiv:2404.19756, 2024 b
2024 arXiv
-
[38]
Universal graph transformer self-attention networks
Dai Quoc Nguyen, Tu Dinh Nguyen, and Dinh Phung. Universal graph transformer self-attention networks. In Companion Proceedings of the Web Conference 2022, pp.\ 193--196, 2022
2022
-
[39]
A simple and practical review of over-fitting in neural network learning
Oyebade K Oyedotun, Ebenezer O Olaniyi, and Adnan Khashman. A simple and practical review of over-fitting in neural network learning. International Journal of Applied Pattern Recognition, 4 0 (4): 0 307--328, 2017
2017
-
[40]
Deepinf: Social influence prediction with deep learning
Jiezhong Qiu, Jian Tang, Hao Ma, Yuxiao Dong, Kuansan Wang, and Jie Tang. Deepinf: Social influence prediction with deep learning. In Proceedings of the 24th ACM SIGKDD international conference on knowledge discovery & data mining, pp.\ 2110--2119, 2018
2018
-
[41]
A distributed approach to node clustering in decentralized peer-to-peer networks
Lakshmish Ramaswamy, Bugra Gedik, and Ling Liu. A distributed approach to node clustering in decentralized peer-to-peer networks. In TPDS, volume 16, pp.\ 814--829, 2005
2005
-
[42]
Ginn-kan: Interpretability pipelining with applications in physics informed neural networks
Nisal Ranasinghe, Yu Xia, Sachith Seneviratne, and Saman Halgamuge. Ginn-kan: Interpretability pipelining with applications in physics informed neural networks. arXiv preprint arXiv:2408.14780, 2024
2024 arXiv
-
[43]
Adaptive training of grid-dependent physics-informed kolmogorov-arnold networks
Spyros Rigas, Michalis Papachristou, Theofilos Papadopoulos, Fotios Anagnostopoulos, and Georgios Alexandridis. Adaptive training of grid-dependent physics-informed kolmogorov-arnold networks. arXiv preprint arXiv:2407.17611, 2024
2024 arXiv
-
[44]
Self-supervised graph transformer on large-scale molecular data
Yu Rong, Yatao Bian, Tingyang Xu, Weiyang Xie, Ying Wei, Wenbing Huang, and Junzhou Huang. Self-supervised graph transformer on large-scale molecular data. Advances in neural information processing systems, 33: 0 12559--12571, 2020
2020
-
[45]
Vlp-kan: Low-complexity and interpretable rss-based vlp using kolmogorov-arnold networks
Fabian Seguel, Driton Salihu, Stefan H \"a gele, and Eckehard Steinbach. Vlp-kan: Low-complexity and interpretable rss-based vlp using kolmogorov-arnold networks. 2024
2024
-
[46]
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 0 (3): 0 93--93, 2008
2008
-
[47]
Pitfalls of graph neural network evaluation
Oleksandr Shchur, Maximilian Mumme, Aleksandar Bojchevski, and Stephan G \"u nnemann. Pitfalls of graph neural network evaluation. arXiv preprint arXiv:1811.05868, 2018
2018 arXiv
-
[48]
Masked label prediction: Unified message passing model for semi-supervised classification
Yunsheng Shi, Zhengjie Huang, Shikun Feng, Hui Zhong, Wenjin Wang, and Yu Sun. Masked label prediction: Unified message passing model for semi-supervised classification. arXiv preprint arXiv:2009.03509, 2020
2009 arXiv
-
[49]
Beyond kan: Introducing karsein for adaptive high-order feature interaction modeling in ctr prediction
Yunxiao Shi, Wujiang Wu, Mingyu Jin, Haimin Zhang, Qiang Wu, Yongfeng Zhang, and Min Xu. Beyond kan: Introducing karsein for adaptive high-order feature interaction modeling in ctr prediction. arXiv preprint arXiv:2408.08713, 2024
2024
-
[50]
Attention-based graph neural networks: a survey
Chengcheng Sun, Chenhao Li, Xiang Lin, Tianji Zheng, Fanrong Meng, Xiaobin Rui, and Zhixiao Wang. Attention-based graph neural networks: a survey. Artificial Intelligence Review, 56 0 (Suppl 2): 0 2263--2310, 2023
2023
-
[51]
Beyond homophily: Structure-aware path aggregation graph neural network
Yifei Sun, Haoran Deng, Yang Yang, Chunping Wang, Jiarong Xu, Renhong Huang, Linfeng Cao, Yang Wang, and Lei Chen. Beyond homophily: Structure-aware path aggregation graph neural network. In IJCAI, pp.\ 2233--2240, 2022
2022
-
[52]
Fine-tuning graph neural networks by preserving graph generative patterns
Yifei Sun, Qi Zhu, Yang Yang, Chunping Wang, Tianyu Fan, Jiajun Zhu, and Lei Chen. Fine-tuning graph neural networks by preserving graph generative patterns. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 38, pp.\ 9053--9061, 2024
2024
-
[53]
Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N
Ashish Vaswani, Noam M. Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N. Gomez, Lukasz Kaiser, and Illia Polosukhin. Attention is all you need. In NIPS, 2017
2017
-
[54]
Graph attention networks
Petar Veličković, Guillem Cucurull, Arantxa Casanova, Adriana Romero, Pietro Liò, and Yoshua Bengio. Graph attention networks. In International Conference on Learning Representations, 2018
2018
-
[55]
Improving graph attention networks with large margin-based constraints
Guangtao Wang, Rex Ying, Jing Huang, and Jure Leskovec. Improving graph attention networks with large margin-based constraints. arXiv preprint arXiv:1910.11945, 2019
1910 arXiv
-
[56]
Kolmogorov arnold informed neural network: A physics-informed deep learning framework for solving pdes based on kolmogorov arnold networks
Yizheng Wang, Jia Sun, Jinshuai Bai, Cosmin Anitescu, Mohammad Sadegh Eshaghi, Xiaoying Zhuang, Timon Rabczuk, and Yinghua Liu. Kolmogorov arnold informed neural network: A physics-informed deep learning framework for solving pdes based on kolmogorov arnold networks. arXiv pre...
2024 arXiv
-
[57]
Ropinn: Region optimized physics-informed neural networks
Haixu Wu, Huakun Luo, Yuezhou Ma, Jianmin Wang, and Mingsheng Long. Ropinn: Region optimized physics-informed neural networks. arXiv preprint arXiv:2405.14369, 2024 a
2024 arXiv
-
[58]
Simplifying and empowering transformers for large-graph representations
Qitian Wu, Wentao Zhao, Chenxiao Yang, Hengrui Zhang, Fan Nie, Haitian Jiang, Yatao Bian, and Junchi Yan. Simplifying and empowering transformers for large-graph representations. Advances in Neural Information Processing Systems, 36, 2024 b
2024
-
[59]
Moleculenet: a benchmark for molecular machine learning
Zhenqin Wu, Bharath Ramsundar, Evan N Feinberg, Joseph Gomes, Caleb Geniesse, Aneesh S Pappu, Karl Leswing, and Vijay Pande. Moleculenet: a benchmark for molecular machine learning. Chemical science, 9 0 (2): 0 513--530, 2018
2018
-
[60]
Zonghan Wu, Shirui Pan, Fengwen Chen, Guodong Long, Chengqi Zhang, and Philip S. Yu. A comprehensive survey on graph neural networks. IEEE Transactions on Neural Networks and Learning Systems, 32: 0 4--24, 2019
2019
-
[61]
Knowledge-enhanced hierarchical graph transformer network for multi-behavior recommendation
Lianghao Xia, Chao Huang, Yong Xu, Peng Dai, Xiyue Zhang, Hongsheng Yang, Jian Pei, and Liefeng Bo. Knowledge-enhanced hierarchical graph transformer network for multi-behavior recommendation. In Proceedings of the AAAI conference on artificial intelligence, volume 35, pp.\ 44...
2021
-
[62]
How powerful are graph neural networks? ICLR, 2019
Keyulu Xu, Weihua Hu, Jure Leskovec, and Stefanie Jegelka. How powerful are graph neural networks? ICLR, 2019
2019
-
[63]
Diverse message passing for attribute with heterophily
Liang Yang, Mengzhe Li, Liyang Liu, Chuan Wang, Xiaochun Cao, Yuanfang Guo, et al. Diverse message passing for attribute with heterophily. Advances in Neural Information Processing Systems, 34: 0 4751--4763, 2021
2021
-
[64]
Do transformers really perform badly for graph representation? Advances in neural information processing systems, 34: 0 28877--28888, 2021
Chengxuan Ying, Tianle Cai, Shengjie Luo, Shuxin Zheng, Guolin Ke, Di He, Yanming Shen, and Tie-Yan Liu. Do transformers really perform badly for graph representation? Advances in neural information processing systems, 34: 0 28877--28888, 2021
2021
-
[65]
Graph convolutional neural networks for web-scale recommender systems
Rex Ying, Ruining He, Kaifeng Chen, Pong Eksombatchai, William L Hamilton, and Jure Leskovec. Graph convolutional neural networks for web-scale recommender systems. In SIGKDD, pp.\ 974--983, 2018
2018
-
[66]
Hype-han: Hyperbolic hierarchical attention network for semantic embedding
Chengkun Zhang and Junbin Gao. Hype-han: Hyperbolic hierarchical attention network for semantic embedding. In Proceedings of the Twenty-Ninth International Conference on International Joint Conferences on Artificial Intelligence, pp.\ 3990--3996, 2021
2021
-
[67]
Graphkan: Enhancing feature extraction with graph kolmogorov arnold networks
Fan Zhang and Xin Zhang. Graphkan: Enhancing feature extraction with graph kolmogorov arnold networks. arXiv preprint arXiv:2406.13597, 2024
2024 arXiv
-
[68]
Graph-bert: Only attention is needed for learning graph representations
Jiawei Zhang, Haopeng Zhang, Congying Xia, and Li Sun. Graph-bert: Only attention is needed for learning graph representations. arXiv preprint arXiv:2001.05140, 2020
2001 arXiv
-
[69]
Hyperbolic graph attention network
Yiding Zhang, Xiao Wang, Chuan Shi, Xunqiang Jiang, and Yanfang Ye. Hyperbolic graph attention network. IEEE Transactions on Big Data, 8 0 (6): 0 1690--1701, 2021
2021
-
[70]
Predicting multicellular function through multi-layer tissue networks
Marinka Zitnik and Jure Leskovec. Predicting multicellular function through multi-layer tissue networks. Bioinformatics, 33 0 (14): 0 i190--i198, 2017
2017
-
[71]
write newline
" write newline "" before.all 'output.state := FUNCTION n.dashify 't := "" t empty not t #1 #1 substring "-" = t #1 #2 substring "--" = not "--" * t #2 global.max substring 't := t #1 #1 substring "-" = "-" * t #2 global.max substring 't := while if t #1 #1 substring * t #2 gl...
-
[72]
@esa (Ref
\@ifxundefined[1] #1\@undefined \@firstoftwo \@secondoftwo \@ifnum[1] #1 \@firstoftwo \@secondoftwo \@ifx[1] #1 \@firstoftwo \@secondoftwo [2] @ #1 \@temptokena #2 #1 @ \@temptokena \@ifclassloaded agu2001 natbib The agu2001 class already includes natbib coding, so you should ...
-
[73]
\@lbibitem[] @bibitem@first@sw\@secondoftwo \@lbibitem[#1]#2 \@extra@b@citeb \@ifundefined br@#2\@extra@b@citeb \@namedef br@#2 \@nameuse br@#2\@extra@b@citeb \@ifundefined b@#2\@extra@b@citeb @num @parse #2 @tmp #1 NAT@b@open@#2 NAT@b@shut@#2 \@ifnum @merge>\@ne @bibitem@firs...
-
[74]
,s 8c A&/WT 7
@open @close @open @close and [1] URL: #1 \@ifundefined chapter * \@mkboth \@ifxundefined @sectionbib * \@mkboth * \@mkboth\@gobbletwo \@ifclassloaded amsart * \@ifclassloaded amsbook * \@ifxundefined @heading @heading NAT@ctr thebibliography [1] @ \@biblabel @NAT@ctr \@bibset...
1944
Reviewed August 10, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.