REVIEW 5 major objections 7 minor 31 references
KAN KAN Buff Signed Graph Neural Networks?
T0 review · 5 major / 7 minor · reviewed 2026-08-10 · deepseek-v4-flash
Pith's one-line read KAN layers can replace the linear transformations in Signed Graph Convolutional Networks with no systematic loss in link-sign prediction or community-detection quality.
desk verdict An honest, incremental empirical study showing KAN layers can substitute for the linear map in SGCN with roughly comparable results; the main weakness is that the headline comparison is statistically underpowered. 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 carrying object is the KAN layer $\varphi$, a learnable univariate function built from B-splines, with a grid size and spline order controlling the approximation. In KASGCN it replaces the linear transformation $W$ in the SGCN recurrence for both the positive ($h^B$) and negative ($h^U$) node representations, with variants using Fourier, Laplace, and Wavelet bases instead of B-splines. The architecture keeps SGCN's balance-theory message passing, so the KAN layer is the only change from the baseline, which lets the experiments isolate the effect of the spline-based transformation.
What would settle it
Run the same comparisons with per-dataset hyperparameter search and paired statistical tests on the 10 runs: if the Congress 12.29% AUC loss is reproduced and most of the reported gains fall within one standard deviation of run-to-run variation, the claim of competitive parity would no longer hold.
Extended reading notes
Core claim
The paper claims that a KAN layer can take over the role of the weight matrix in the SGCN update equations without breaking the balance-theoretic structure that gives SGCN its meaning. In KASGCN, the linear transforms $W^{(l)}$ for updating positive and negative representations are replaced by KAN layers $\varphi^{(l)}$, while the two-channel aggregation over positive and negative neighbors is preserved. In experiments on seven signed graphs, KASGCN achieves competitive or comparable performance to SGCN across signed community detection and link sign prediction: it improves AUC on six of seven datasets for link sign prediction, with gains up to 3.46% on WikiElec, but F1 improvements are mixed and one graph, Congress, shows a 12.29% AUC drop. The authors interpret the results as context-dependent effectiveness rather than general superiority of KAN-based signed GNNs.
Load-bearing premise
The paper's conclusion rests on the assumption that a single fixed hyperparameter configuration (layers [32,32], grid size 5, spline order 3, learning rate 0.001, seed 42) and 10-run averages without significance tests are enough to judge which model is better.
Editorial extensions
If this is right
- KAN layers can act as a drop-in substitute for the linear map in SGCN: for AUC, KASGCN is not systematically worse than SGCN on the seven tested signed graphs.
- The choice of KAN variant matters more than the choice between SGCN and KASGCN: FourierKASGCN and WaveletKASGCN often finish first in community detection or link-sign prediction, while LaplaceKASGCN is consistently last.
- Near-zero average cosine similarity (between $-0.02$ and $0.07$) between SGCN and KASGCN embeddings shows the two models produce geometrically different embeddings, yet those different geometries lead to similar downstream performance.
- Training time grows with the number of aggregator layers for KASGCN but not for SGCN, so parity comes at a computational cost that increases with depth.
Reading between the lines
- Because the embeddings are near-orthogonal yet downstream scores are similar, KASGCN may be capturing different node features than SGCN; a natural test is whether KASGCN embeddings preserve balance-theoretic cycle structure as faithfully as SGCN's.
- The hyperparameters were fixed once for all graphs, so tuning grid size, spline order, or layer width per dataset could change both absolute performance and the variant ranking; the observed parity is therefore a lower bound on what KAN-based signed GNNs could achieve.
- A paired significance test across the 10 runs, rather than averaged metrics alone, would tell whether gains like 2-3% AUC are real or within run-to-run noise; the paper reports no such test.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes KASGCN, an extension of the Signed Graph Convolutional Network (SGCN) in which the linear transformation in each layer is replaced by a Kolmogorov-Arnold Network (KAN) layer. The authors evaluate KASGCN against standard SGCN on seven signed graphs for two downstream tasks: community detection via K-means++ on node embeddings and link sign prediction via multinomial logistic regression. They also compare several KAN variants (Fourier, Laplace, Wavelet) and examine training efficiency and embedding similarity. The central empirical claim is that KASGCN achieves competitive or comparable performance to SGCN, with context-dependent variability.
Significance. If the claims are substantiated, the paper provides an early empirical datapoint on whether KAN layers can serve as drop-in replacements for linear transformations in signed GNNs. The work is honest in reporting means and standard deviations over 10 runs and in hedging its conclusions as context-dependent. However, the strength of the evidence is limited by the absence of significance or equivalence testing, the use of a clustering quality metric that conflates two components with different scales, and fixed hyperparameters without sensitivity analysis. The reported differences are often within run-to-run noise, so the 'comparable' conclusion is currently underdetermined.
major comments (5)
- [Section 3.2, Table 5] The observation that KASGCN shows 'consistent improvement in AUC across most datasets' is not supported by the data: the Congress dataset shows a 12.29% AUC drop (0.570 ± 0.055 vs 0.499 ± 0.046), and the gains on other datasets are small relative to the reported standard deviations. Without paired significance tests (e.g., Wilcoxon signed-rank or paired t-test over the same seeds) or confidence intervals for the differences, the aggregate pattern could be consistent with random noise. Please report paired tests and effect sizes, and explicitly discuss the Congress outlier.
- [Section 3.1, Eq. (5)] The clustering quality metric Q = posin + negout assigns equal weight to two components that have different scales and variances across datasets. For example, in Table 3 (K = 10), PPI shows KASGCN increasing negout from 0.784 ± 0.011 to 0.936 ± 0.009 while decreasing posin from 0.422 ± 0.037 to 0.364 ± 0.037; the reported +7.79% gain is driven primarily by the negout term. The authors should justify why equal weighting is appropriate or report the components separately with a clear interpretation of trade-offs.
- [Section 2.2, Tables 2-5] All hyperparameters (layers = [32,32], grid size = 5, spline order = 3, learning rate = 0.001, etc.) are fixed across datasets and models, and no sensitivity analysis is provided. Since the paper's central claim is that KASGCN is 'comparable' and 'context-dependent,' the observed differences could be an artifact of suboptimal KAN hyperparameters rather than an intrinsic property of the architecture. A sensitivity analysis over at least grid size and hidden layer size on one or two datasets is needed to support the robustness of the conclusions.
- [Section 3.1, Tables 2-5] The gain percentages in Tables 2-5 are computed as ratios of noisy quantities, but no uncertainty is propagated into the gains. For instance, the Congress AUC gain of -12.29% in Table 5 is derived from means with standard deviations of 0.055 and 0.046, and the confidence interval for the gain would likely include zero or even positive values. Please report absolute differences with confidence intervals, or apply a bootstrap/delta method to the gains, so that the reader can judge the stability of each reported gain.
- [Section 3.3, Figure 2] The efficiency claim that 'KAGCN takes significantly longer' (the text appears to mean KASGCN) is supported only by a visual inspection of Figure 2, with no quantitative runtime values in the text or a table. Please provide numerical results, such as mean training time and standard deviation for each aggregator layer, to make the efficiency comparison concrete and reproducible.
minor comments (7)
- [Sections 3.3 and 3.5] The text refers to 'KAGCN' in several places (e.g., 'KAGCN takes a significantly longer time' in Section 3.3 and the heading 'KAGCN Robustness' in Section 3.5); these should be corrected to 'KASGCN'.
- [Title] The title appears as 'KAN KAN B UFF SIGNED GRAPH NEURAL NETWORKS?' which is likely a formatting artifact; it should be corrected to a readable phrase (e.g., 'KAN-Buff Signed Graph Neural Networks?').
- [Tables 4-5] In Table 4, the PPI gain is reported as '8.74' without a percent sign; in Table 5, the WikiRFA F1 gain is reported as '-0.434' which should likely be '-0.43%'. Please ensure consistent formatting of percentages.
- [References] The reference [Anonymous, 2024] is an anonymous citation; a journal submission should cite the actual authors and venue for this work on GraphKAN.
- [Abstract and Section 1.1] The abstract states that KANs offer 'improved accuracy and interpretability with fewer parameters,' but the paper does not evaluate interpretability or parameter efficiency in any experiment; please soften this claim or add supporting evidence.
- [Section 3.4] The near-zero cosine similarity between SGCN and KASGCN embeddings is an interesting finding, but the paper does not explain why such different embeddings can still yield comparable downstream performance. A brief discussion would be useful.
- [Overall] No code availability statement is provided. Given that the KAN implementations rely on external repositories, a link to the experimental code would substantially improve reproducibility.
Circularity Check
No circularity: the KASGCN-vs-SGCN comparison is empirical and does not reduce to a fit or a self-citation chain.
full rationale
The paper is an empirical architecture comparison, not a derivation. KASGCN is defined by replacing the SGCN weight matrix W with a KAN layer, with the replacement justified by external prior work (Bresson et al., Liu et al.), not by the authors' own prior results. The evaluation metrics (pos_in, neg_out, Q, AUC, F1) are defined independently of the model outputs, and the KAN hyperparameters (layers, grid size, spline order, learning rate, etc.) are fixed before the experiments and are not fitted to the reported target metrics. No quantity is fitted to a subset of the data and then renamed a prediction; no uniqueness theorem is imported from the authors' own work; no ansatz is smuggled in via self-citation. The paper's central claim is that KASGCN shows competitive or comparable performance to SGCN, which is a direct reading of the tables rather than a conclusion forced by the construction of the method. Concerns about statistical significance, the Congress AUC drop, and the absence of equivalence tests are correctness or evidence-quality issues, not circularity. The circularity burden is therefore effectively zero.
Assumptions & free parameters
free parameters (8)
- KAN grid size =
5
- KAN spline order =
3
- Hidden layer size =
[32, 32]
- Learning rate =
0.001
- Training epochs =
1000
- Weight decay =
1e-5
- KAN scale parameters (scale_noise, scale_base, scale_spline) =
0.1, 1.0, 1.0
- Random seed =
42
assumptions (5)
- standard math The Kolmogorov-Arnold representation theorem
- domain assumption Structural balance theory as a model of signed networks
- domain assumption Kmeans++ on the concatenated positive and negative embeddings yields meaningful signed communities
- domain assumption Logistic regression on the embeddings is a valid probe for link sign prediction
- domain assumption Preprocessing choices preserve signed network semantics
Cite this review
Pith. "Pith review of KAN KAN Buff Signed Graph Neural Networks?." pith.science (2026). https://pith.science/paper/E7GYYWGX
@misc{pith2026250100709,
author = {Pith},
title = {Pith review of: KAN KAN Buff Signed Graph Neural Networks?},
year = {2026},
howpublished = {\url{https://pith.science/paper/E7GYYWGX}},
note = {Machine review of arXiv:2501.00709}
}
read the original abstract
Graph Representation Learning aims to create effective embeddings for nodes and edges that encapsulate their features and relationships. Graph Neural Networks (GNNs) leverage neural networks to model complex graph structures. Recently, the Kolmogorov-Arnold Neural Network (KAN) has emerged as a promising alternative to the traditional Multilayer Perceptron (MLP), offering improved accuracy and interpretability with fewer parameters. In this paper, we propose the integration of KANs into Signed Graph Convolutional Networks (SGCNs), leading to the development of KAN-enhanced SGCNs (KASGCN). We evaluate KASGCN on tasks such as signed community detection and link sign prediction to improve embedding quality in signed networks. Our experimental results indicate that KASGCN exhibits competitive or comparable performance to standard SGCNs across the tasks evaluated, with performance variability depending on the specific characteristics of the signed graph and the choice of parameter settings. These findings suggest that KASGCNs hold promise for enhancing signed graph analysis with context-dependent effectiveness.
Figures
Reference graph
Works this paper leans on
-
[1]
Abelson, R. P. and Rosenberg, M. J. (1958). Symbolic psycho-logic: A model of attitudinal cognition. Behavioral Science , 3(1):1--13
work page 1958
-
[2]
Amelkin, V. and Singh, A. K. (2019). Fighting opinion control in social networks via link recommendation. In Proceedings of the 25th ACM SIGKDD International Conference on Knowledge Discovery & Data Mining , KDD '19, page 677–685, New York, NY, USA. Association for Computing Machinery
work page 2019
-
[3]
Cartwright, D. and Harary, F. (1956). Structural balance: a generalization of H eider's theory. Psychological Rev. , 63:277--293
work page 1956
-
[4]
Harary, F. and Cartwright, D. (1968). On the coloring of signed graphs. Elemente der Mathematik , 23:85--89
work page 1968
-
[5]
Garimella, K., Smith, T., Weiss, R., and West, R. (2021). Political polarization in online news consumption. In Proceedings of the International AAAI Conference on Web and Social Media , volume 15, pages 152--162
work page 2021
-
[6]
Kunegis, J. (2013). Konect: the koblenz network collection. In Proceedings of the 22nd international conference on world wide web , pages 1343--1350
work page 2013
-
[7]
He, Y., Reinert, G., Wang, S., and Cucuringu, M. (2022). Sssnet: Semi-supervised signed network clustering
work page 2022
-
[8]
Interian, R., Marzo, R. G., Mendoza, I., and Ribeiro, C. C. (2022). Network polarization, filter bubbles, and echo chambers: An annotated review of measures, models, and case studies. arXiv preprint arXiv:2207.13799
work page Pith review arXiv 2022
Show all 31 references
-
[9]
Derr, T., Wang, Z., Dacon, J., and Tang, J. (2020). Link and interaction polarity predictions in signed networks. Social Network Analysis and Mining , 10(1):1--14
2020
-
[10]
Derr, T., Ma, Y., and Tang, J. (2018). Signed Graph Convolutional Network. https://arxiv.org/abs/1808.06354
2018 arXiv
-
[11]
Bresson, R., Nikolentzos, G., Panagopoulos, G., Chatzianastasis, M., Pang, J., and Vazirgiannis, M. (2024). KAGNNs: Kolmogorov-Arnold Networks meet Graph Learning. https://arxiv.org/abs/2406.18380
2024 arXiv
-
[12]
Y., and Tegmark, M
Liu, Z., Wang, Y., Vaidya, S., Ruehle, F., Halverson, J., Soljačić, M., Hou, T. Y., and Tegmark, M. (2024). KAN: Kolmogorov-Arnold Networks. https://arxiv.org/abs/2404.19756
2024 arXiv
-
[13]
Xu, J., Chen, Z., Li, J., Yang, S., Wang, W., Hu, X., and Ngai, E. C. H. (2024). FourierKAN-GCF: Fourier Kolmogorov-Arnold Network -- An Effective and Efficient Feature Transformation for Graph Collaborative Filtering. https://arxiv.org/abs/2406.01034
2024 arXiv
-
[14]
Yin, B., et al. (2024). Toy-KAN. https://github.com/byin-cwi/Toy-KAN , Accessed: 2024-12-08
2024
-
[15]
Bozorgasl, Z., and Chen, H. (2024). Wav-KAN: Wavelet Kolmogorov-Arnold Networks. https://arxiv.org/abs/2405.12832
2024 arXiv
-
[16]
Efficient-KAN: An Efficient Implementation of Kolmogorov-Arnold Network
Blealtan, (2024). Efficient-KAN: An Efficient Implementation of Kolmogorov-Arnold Network. https://github.com/Blealtan/efficient-kan , GitHub repository
2024
-
[17]
Li, L., Zhang, Y., Wang, G., and Xia, K. (2024). KA-GNN: Kolmogorov-Arnold Graph Neural Networks for Molecular Property Prediction. https://arxiv.org/abs/2410.11323
2024 arXiv
-
[18]
Liu, Z., Ma, P., Wang, Y., Matusik, W., and Tegmark, M. (2024). KAN 2.0: Kolmogorov-Arnold Networks Meet Science. https://arxiv.org/abs/2408.10205
2024 arXiv
-
[19]
Dong, C., Zheng, L., and Chen, W. (2024). Kolmogorov-Arnold Networks (KAN) for Time Series Classification and Robust Analysis. https://arxiv.org/abs/2408.07314
2024 arXiv
-
[20]
Moradi, M., Panahi, S., Bollt, E., and Lai, Y.-C. (2024). Kolmogorov-Arnold Network Autoencoders. https://arxiv.org/abs/2410.02077
2024 arXiv
-
[21]
Lu, Y., and Zhan, F. (2024). Kolmogorov Arnold Networks in Fraud Detection: Bridging the Gap Between Theory and Practice. https://arxiv.org/abs/2408.10263
2024 arXiv
-
[22]
Graph KAN : Graph Kolmogorov Arnold Network for Small Molecule-Protein Interaction Predictions
Anonymous, (2024). Graph KAN : Graph Kolmogorov Arnold Network for Small Molecule-Protein Interaction Predictions. In ICML'24 Workshop ML for Life and Material Science: From Theory to Industry Applications . https://openreview.net/forum?id=d5uz4wrYeg
2024
-
[23]
Cheon, M. (2024). Kolmogorov-Arnold Network for Satellite Image Classification in Remote Sensing. https://arxiv.org/abs/2406.00600
2024 arXiv
-
[24]
Xu, M. (2021). Understanding Graph Embedding Methods and Their Applications. SIAM Review , 63(4):825-853. https://doi.org/10.1137/20M1386062
2021 doi
-
[25]
Fan, W., Ma, Y., Li, Q., He, Y., Zhao, E., Tang, J., and Yin, D. (2019). Graph Neural Networks for Social Recommendation. In The World Wide Web Conference , pages 417--426, San Francisco, CA, USA. Association for Computing Machinery. https://doi.org/10.1145/3308558.3313488
2019
-
[26]
A., and Rekik, I
Bessadok, A., Mahjoub, M. A., and Rekik, I. (2023). Graph Neural Networks in Network Neuroscience. IEEE Transactions on Pattern Analysis and Machine Intelligence , 45(5):5833-5848. https://doi.org/10.1109/TPAMI.2022.3209686
2023
-
[27]
De Carlo, G., Mastropietro, A., and Anagnostopoulos, A. (2024). Kolmogorov-Arnold Graph Neural Networks. https://arxiv.org/abs/2406.18354
2024 arXiv
-
[28]
Kiamari, M., Kiamari, M., and Krishnamachari, B. (2024). GKAN: Graph Kolmogorov-Arnold Networks. https://arxiv.org/abs/2406.06470
2024 arXiv
-
[29]
Ji, T., Hou, Y., and Zhang, D. (2024). A Comprehensive Survey on Kolmogorov Arnold Networks (KAN). arXiv preprint arXiv:2407.11075 . Available at: https://arxiv.org/abs/2407.11075 https://arxiv.org/abs/2407.11075
2024 arXiv
-
[30]
and Seidel, H.-P
Fong, P. and Seidel, H.-P. (1991). Control Points for Multivariate B-Spline Surfaces over Arbitrary Triangulations. Computer Graphics Forum , 10(4):309--317. doi: 10.1111/1467-8659.1040309 https://doi.org/10.1111/1467-8659.1040309
1991
-
[31]
Kolmogorov, A. N. (1956). On the representation of continuous functions of several variables as superpositions of continuous functions of a smaller number of variables. Dokl. Akad. Nauk , 108(2):1956
1956
Reviewed August 10, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.