REVIEW 3 major objections 6 minor 60 references
Khan-GCL: Kolmogorov-Arnold Network Based Graph Contrastive Learning with Hard Negatives
T0 review · 3 major / 6 minor · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read Khan-GCL claims that coupling a Kolmogorov-Arnold encoder with hard negatives mined from B-spline coefficients makes graph contrastive learning transfer and classify better.
desk verdict A new hard-negative scheme for KAN-based graph contrastive learning with a plausible empirical case, but the variance-bound theorem behind the discriminative score is false and the baseline comparisons need a common codebase. 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 load-bearing object is the KAN layer's coefficient tensor $C = \{c_{ijk}\} \in \mathbb{R}^{d_{\mathrm{in}} \times d_{\mathrm{out}} \times d_c}$, where each univariate activation is a B-spline $\phi_{i,j}(x)=\sum_k c_{ijk}B_{ijk}(x)$. CKFI reads this tensor twice: a leave-one-dimension-out HOSVD reconstruction error $\delta_j$ scores how independently each output dimension encodes information, and the average coefficient variance $\rho_j$ scores how much that dimension spreads the data. A hard negative is the representation $z$ plus $p_\delta+p_\rho$, where each coordinate perturbation is a Rademacher-signed Gaussian with mean proportional to $\delta_j$ or $\rho_j$, and a stop-gradient on the projected hard negatives in the extra loss term prevents collapse. The mechanism carries the paper's claim that perturbing the most independent and most discriminative dimensions changes a graph's semantic identity with only a small feature-space displacement.
What would settle it
Check the bound numerically for a uniform cubic B-spline with slowly varying coefficients, e.g., $c_k = 1 + 0.01\sin(k\pi/n)$, computing $\mathrm{Var}[\phi(x)] = d^T M d$ with $d_i = c_i - \bar{c}$ and comparing it to $M^{(0)}\sigma_c^2$; with positive off-diagonal overlap integrals $M^{(1)}, M^{(2)}, M^{(3)}$, this quantity can exceed the claimed upper bound, which would refute the proposition as stated.
Extended reading notes
Core claim
Khan-GCL's central claim is that the coefficient tensor of a KAN encoder carries global information that can be turned into a training signal for contrastive learning. The paper derives two scores for each output dimension: an independence score $\delta_j$, defined as the Frobenius reconstruction error when that dimension's coefficient slice is omitted from a higher-order singular value decomposition (HOSVD), and a discriminative score $\rho_j$, the average variance of the B-spline coefficients feeding that dimension. It then forms hard negatives by adding small Rademacher-signed Gaussian perturbations whose means are proportional to these scores, and trains with the standard contrastive loss plus a stop-gradient hard-negative loss. In the reported experiments this combination attains the best average results on eight biochemical transfer-learning datasets and eight TU unsupervised datasets, and the MNIST-superpixel nearest-neighbor retrieval shows that the generated hard negatives are visually similar to the original graphs yet mostly carry different labels.
Load-bearing premise
The load-bearing premise is that an output dimension with high variance among its spline coefficients is genuinely more discriminative; the paper's proof of that bound treats all overlap integrals as nonnegative, which need not hold when the coefficients vary slowly.
Editorial extensions
If this is right
- Transfer learning results on MoleculeNet datasets improve when the pre-trained encoder is a KAN: Khan-GCL reports the best average ROC-AUC across eight biochemical benchmarks compared with the listed GCL methods.
- On eight TU-datasets under the SVM evaluation protocol, Khan-GCL reports the highest average accuracy, with the best single-dataset accuracy on six of the eight.
- Replacing MLP encoders with same-sized KAN layers improves GraphCL and JOAOv2 even before hard negatives are added, indicating the encoder change is beneficial on its own.
- Hard negatives generated by CKFI outperform random Gaussian perturbation, and using both the independent and discriminative scores together outperforms using either type alone.
- The added computational cost of KAN spline evaluation is moderate: in Zinc-2M pre-training, Khan-GCL is roughly 0.063 seconds per iteration, close to the RGCL baseline and about 1.4 times the GraphCL baseline.
Reading between the lines
- The CKFI score computation assumes that the coefficient tensor's mode-2 slices are semantically meaningful; if that holds, the same scheme could be applied to intermediate KAN layers to generate layer-wise hard negatives, which the authors list only as future work.
- Since the construction needs only a coefficient tensor, it should carry over to other spline- or wavelet-based networks and to tensorized MLPs, making targeted hard-negative generation a property of the parameterization rather than a graph-specific trick.
- One direct test of the semantic claim: on a labeled dataset, perturbing only the top-$\delta$ and top-$\rho$ dimensions should flip a nearest-neighbor or linear-classifier label more often than perturbing the same number of random dimensions at equal average magnitude.
- Pre-trained CKFI scores could be frozen and reused when fine-tuning on small downstream datasets, offering a label-free form of hard-negative augmentation during adaptation.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes Khan-GCL, a graph contrastive learning framework that replaces the MLP encoder with a KAN-based encoder and adds a hard-negative generation module (CKFI). CKFI identifies two types of critical output dimensions—'independent' dimensions via HOSVD reconstruction error and 'discriminative' dimensions via the variance of B-spline coefficients—and perturbs those dimensions in representation space to create hard negatives. The authors report state-of-the-art transfer learning and unsupervised graph classification results on MoleculeNet and TU-dataset benchmarks, with ablations isolating the KAN encoder and the two CKFI components, plus a qualitative MNIST-superpixel retrieval study.
Significance. If the empirical results are taken at face value, the paper makes a useful practical contribution: it demonstrates that KAN encoders can be plugged into GCL pipelines and that coefficient-based feature scoring is a cheap alternative to batch-wise variance estimation. The ablations (Table 4, Figure 4) and the compatibility experiment with JOAOv2 are informative, and the MNIST-superpixel nearest-neighbor check is a nice sanity test. However, the theoretical justification for the discriminative component is a named contribution and is currently invalid; the SOTA claim also rests on quoted baselines rather than a controlled rerun. With those points repaired, the empirical study would be a solid contribution to the GCL/KAN line of work.
major comments (3)
- [Section 4.2, Proposition 2 and Appendix A.2 (Eqs. 26–27)] The proof of Proposition 2 is invalid. In Eq. (26), the off-diagonal terms 2M(k) Σ d_i d_{i+k} are not nonnegative in general: for a zero-mean, slowly varying coefficient deviation such as d_i = cos(2π i/n) after centering, the products d_i d_{i+1} are predominantly positive, so 2M(1) Σ d_i d_{i+1} > 0 and the claimed inequality Var[ϕ] ≤ M(0) Σ d_i^2 does not follow. Equation (27) also omits the factor n when replacing Σ d_i^2 by σ_c^2, since Σ d_i^2 = n σ_c^2. Because Eq. (8) and Eq. (9) use coefficient variance as the discriminative score, the stated theoretical justification for this part of CKFI is unsupported. The authors should either prove a correct bound (e.g., using λ_max(M)) and adapt the score accordingly, or explicitly reframe the discriminative score as a heuristic.
- [Section 4.2–4.3] Even if Proposition 2 were true for a single univariate B-spline, it would not establish Eq. (8)'s ρ_j as a measure of output-dimension discriminative power, because the KAN layer output in Eq. (2) is a sum of d_in such functions and the variance of that sum depends on the input distributions and cross terms between the univariate functions. The paper should either derive a valid bound for the layer output variance or present CKFI as a heuristic motivated by the coefficient-variance intuition.
- [Section 5, Tables 1–3] All comparison numbers for prior methods are quoted from their original publications rather than reproduced in a shared pipeline, as the table footnotes acknowledge. This weakens the central 'state-of-the-art' claim: differences in hyperparameters, dataset splits, and evaluation details can change ROC-AUC or accuracy by more than the reported margins. I ask the authors to rerun the most competitive baselines under their own evaluation protocol, or to substantially soften the SOTA claim.
minor comments (6)
- [Appendix C, Algorithm 2] The loop header says 'for i = 1 to dc' but the body removes slice j and computes δ_j; the loop should iterate over output dimensions j.
- [Appendix E.1] The dataset list names only seven MoleculeNet datasets (BBBP, Tox21, SIDER, ClinTox, MUV, HIV, BACE), but Table 1 also includes ToxCast; the list should be completed.
- [Tables 1 and 2] The column header 'A VG' appears to be a typo for 'Avg'.
- [Section 1, Introduction] The phrase 'balance between expensiveness and risks' should read 'balance between expressiveness and risks'.
- [Appendix B] The heading contains the typo 'Algorothm' and should read 'Algorithm'.
- [Reproducibility] The paper does not state whether code will be released; given the nontrivial implementation details in Algorithms 1–3, a code release or pseudocode-level clarification of the least-squares projection in Algorithm 2 (line 6) would improve reproducibility.
Circularity Check
No significant circularity: Khan-GCL's empirical claims are benchmarked against externally published results, and CKFI's self-referential coefficient scoring is standard hard-negative mining rather than a derivation that reduces to its input.
full rationale
No load-bearing circular step was found. The central claims are empirical: replacing MLP encoders with KAN encoders and using CKFI-based perturbations to generate hard negatives, with performance compared against independently published results in Tables 1-3 and ablations in Table 4 and Figure 4. CKFI computes discriminative and independence scores from the current KAN coefficients and uses those scores to perturb representations for an additional contrastive loss; this is a self-referential training loop common to hard-negative mining, not a derivation whose conclusion is assumed by construction. Proposition 2's variance bound is offered as mathematical support, and the Appendix A.2 proof is questionable because it drops off-diagonal quadratic terms that need not be nonnegative, but an unsupported or false supporting bound is a correctness risk, not circularity, since the empirical method does not reduce to that bound. Self-citations in the introduction are contextual and not load-bearing for the main result. The paper is self-contained against external benchmarks, so the circularity score is 0.
Assumptions & free parameters
free parameters (7)
- epsilon_delta =
0.075
- epsilon_rho =
0.075
- sigma_delta =
0.05
- sigma_rho =
0.05
- HOSVD truncation ranks (r1, r2, r3) =
unspecified
- KAN grid size =
5
- B-spline order =
3 (cubic)
assumptions (5)
- standard math Kolmogorov-Arnold representation theorem justifies KAN encoders
- domain assumption Uniform B-spline basis functions satisfy partition of unity and have equal integrals
- ad hoc to paper Variance of a uniform B-spline function is bounded by M(0) times coefficient variance
- ad hoc to paper Leave-one-out HOSVD reconstruction error identifies semantically critical output dimensions
- ad hoc to paper Perturbing high-scoring dimensions changes graph identity while preserving similarity
Cite this review
Pith. "Pith review of Khan-GCL: Kolmogorov-Arnold Network Based Graph Contrastive Learning with Hard Negatives." pith.science (2026). https://pith.science/paper/YFNKV2TJ
@misc{pith2026250515103,
author = {Pith},
title = {Pith review of: Khan-GCL: Kolmogorov-Arnold Network Based Graph Contrastive Learning with Hard Negatives},
year = {2026},
howpublished = {\url{https://pith.science/paper/YFNKV2TJ}},
note = {Machine review of arXiv:2505.15103}
}
read the original abstract
Graph contrastive learning (GCL) has demonstrated great promise for learning generalizable graph representations from unlabeled data. However, conventional GCL approaches face two critical limitations: (1) the restricted expressive capacity of multilayer perceptron (MLP) based encoders, and (2) suboptimal negative samples that either from random augmentations-failing to provide effective 'hard negatives'-or generated hard negatives without addressing the semantic distinctions crucial for discriminating graph data. To this end, we propose Khan-GCL, a novel framework that integrates the Kolmogorov-Arnold Network (KAN) into the GCL encoder architecture, substantially enhancing its representational capacity. Furthermore, we exploit the rich information embedded within KAN coefficient parameters to develop two novel critical feature identification techniques that enable the generation of semantically meaningful hard negative samples for each graph representation. These strategically constructed hard negatives guide the encoder to learn more discriminative features by emphasizing critical semantic differences between graphs. Extensive experiments demonstrate that our approach achieves state-of-the-art performance compared to existing GCL methods across a variety of datasets and tasks.
Figures
Figures from the paper (2 more)
Reference graph
Works this paper leans on
-
[1]
, " * write output.state after.block = add.period write newline
ENTRY address archivePrefix author booktitle chapter edition editor eid eprint howpublished institution isbn journal key month note number organization pages publisher school series title type volume year label extra.label sort.label short.list INTEGERS output.state before.all mid.sentence after.sentence after.block FUNCTION init.state.consts #0 'before.a...
-
[2]
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 global.max substring 't := if while FUNCTION word.in bbl.in capitalize " " * FUNCT...
-
[3]
Ahmed, T.; and Sifat, M. H. R. 2024. GraphKAN: 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
work page 2024
-
[4]
Bresson, R.; Nikolentzos, G.; Panagopoulos, G.; Chatzianastasis, M.; Pang, J.; and Vazirgiannis, M. 2025. KAGNNs: Kolmogorov-Arnold Networks meet Graph Learning. arXiv:2406.18380
arXiv 2025
-
[5]
Chen, J.; Yuchi, X.; Yan, Z.; Dong, K.; and Li, H. 2025. KA - GAT : Kolmogorov Arnold based Graph Attention Networks
work page 2025
-
[6]
Chen, T.; Kornblith, S.; Norouzi, M.; and Hinton, G. 2020. A simple framework for contrastive learning of visual representations. In International conference on machine learning, 1597--1607. PmLR
2020
-
[7]
Chen, T.; Zhou, K.; Duan, K.; Zheng, W.; Wang, P.; Hu, X.; and Wang, Z. 2022. Bag of tricks for training deeper graph neural networks: A comprehensive benchmark study. IEEE Transactions on Pattern Analysis and Machine Intelligence, 45(3): 2769--2781
work page 2022
-
[8]
Chen, Y.; Frias, J.; and Gel, Y. R. 2024. TopoGCL: Topological Graph Contrastive Learning. arXiv preprint arXiv:2406.17251
work page Pith review arXiv 2024
Show all 60 references
-
[9]
Cui, G.; Du, Y.; Yang, C.; Zhou, J.; Xu, L.; Zhou, X.; Cheng, X.; and Liu, Z. 2021. Evaluating modules in graph contrastive learning. arXiv preprint arXiv:2106.08171
2021 arXiv
-
[10]
Cybenko, G. 1989. Approximation by superpositions of a sigmoidal function. Mathematics of control, signals and systems, 2(4): 303--314
1989
-
[11]
De Lathauwer, L.; De Moor, B.; and Vandewalle, J. 2000. A multilinear singular value decomposition. SIAM journal on Matrix Analysis and Applications, 21(4): 1253--1278
2000
-
[12]
Fang, T.; Gao, T.; Wang, C.; Shang, Y.; Chow, W.; Chen, L.; and Yang, Y. 2025. KAA: Kolmogorov-Arnold Attention for Enhancing Attentive Graph Neural Networks. arXiv:2501.13456
2025 arXiv
-
[13]
Fey, M.; and Lenssen, J. E. 2019. Fast graph representation learning with PyTorch Geometric. arXiv preprint arXiv:1903.02428
2019 arXiv
-
[14]
Gao, T.; Yao, X.; and Chen, D. 2021. Simcse: Simple contrastive learning of sentence embeddings. arXiv preprint arXiv:2104.08821
2021 arXiv
-
[15]
Hornik, K.; Stinchcombe, M.; and White, H. 1989. Multilayer feedforward networks are universal approximators. Neural networks, 2(5): 359--366
1989
-
[16]
Hu, Q.; Wang, X.; Hu, W.; and Qi, G.-J. 2021. Adco: Adversarial contrast for efficient learning of unsupervised representations from self-trained negative adversaries. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 1074--1083
2021
-
[17]
Hu, W.; Liu, B.; Gomes, J.; Zitnik, M.; Liang, P.; Pande, V.; and Leskovec, J. 2019. Strategies for pre-training graph neural networks. arXiv preprint arXiv:1905.12265
2019 arXiv
-
[18]
Ji, Q.; Li, J.; Hu, J.; Wang, R.; Zheng, C.; and Xu, F. 2024. Rethinking dimensional rationale in graph contrastive learning from causal perspective. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 38, 12810--12820
2024
-
[19]
B.; Pion, N.; Weinzaepfel, P.; and Larlus, D
Kalantidis, Y.; Sariyildiz, M. B.; Pion, N.; Weinzaepfel, P.; and Larlus, D. 2020. Hard negative mixing for contrastive learning. Advances in neural information processing systems, 33: 21798--21809
2020
-
[20]
Kiamari, M.; Kiamari, M.; and Krishnamachari, B. 2024. GKAN: Graph Kolmogorov-Arnold Networks. arXiv:2406.06470
2024 arXiv
-
[21]
Kingma, D. P. 2014. Adam: A method for stochastic optimization. arXiv preprint arXiv:1412.6980
2014 arXiv
-
[22]
LeCun, Y.; Bottou, L.; Bengio, Y.; and Haffner, P. 1998. Gradient-based learning applied to document recognition. Proceedings of the IEEE, 86(11): 2278--2324
1998
-
[23]
Li, L.; Zhang, Y.; Wang, G.; and Xia, K. 2024 a . KA-GNN: Kolmogorov-Arnold Graph Neural Networks for Molecular Property Prediction. arXiv:2410.11323
2024 arXiv
-
[24]
Li, Q.; Han, Z.; and Wu, X.-M. 2018. Deeper insights into graph convolutional networks for semi-supervised learning. In Proceedings of the AAAI conference on artificial intelligence, volume 32
2018
-
[25]
Li, R.; Li, M.; Liu, W.; and Chen, H. 2024 b . GNN-SKAN: Harnessing the Power of SwallowKAN to Advance Molecular Representation Learning with GNNs. arXiv:2408.01018
2024 arXiv
-
[26]
Li, S.; Luo, Y.; Zhang, A.; Wang, X.; Li, L.; Zhou, J.; and Chua, T.-S. 2025. Self-attentive rationalization for interpretable graph contrastive learning. ACM Transactions on Knowledge Discovery from Data, 19(2): 1--21
2025
-
[27]
Li, S.; Wang, X.; Zhang, A.; He, X.; and Chua, T.-S. 2022. Let Invariant Rationale Discovery Inspire Graph Contrastive Learning. In ICML
2022
-
[28]
Liu, S.; Wang, H.; Liu, W.; Lasenby, J.; Guo, H.; and Tang, J. 2021. Pre-training molecular graph representation with 3d geometry. arXiv preprint arXiv:2110.07728
2021 arXiv
-
[29]
Y.; and Tegmark, M
Liu, Z.; Wang, Y.; Vaidya, S.; Ruehle, F.; Halverson, J.; Solja c i \'c , M.; Hou, T. Y.; and Tegmark, M. 2024. Kan: Kolmogorov-arnold networks. arXiv preprint arXiv:2404.19756
2024 arXiv
-
[30]
Luo, X.; Ju, W.; Gu, Y.; Mao, Z.; Liu, L.; Yuan, Y.; and Zhang, M. 2023. Self-supervised graph-level representation learning with adversarial contrastive learning. ACM Transactions on Knowledge Discovery from Data, 18(2): 1--23
2023
-
[31]
McInnes, L.; Healy, J.; and Melville, J. 2018. Umap: Uniform manifold approximation and projection for dimension reduction. arXiv preprint arXiv:1802.03426
2018 arXiv
-
[32]
Monti, F.; Boscaini, D.; Masci, J.; Rodola, E.; Svoboda, J.; and Bronstein, M. M. 2017. Geometric deep learning on graphs and manifolds using mixture model cnns. In Proceedings of the IEEE conference on computer vision and pattern recognition, 5115--5124
2017
-
[33]
M.; Bause, F.; Kersting, K.; Mutzel, P.; and Neumann, M
Morris, C.; Kriege, N. M.; Bause, F.; Kersting, K.; Mutzel, P.; and Neumann, M. 2020. Tudataset: A collection of benchmark datasets for learning with graphs. arXiv preprint arXiv:2007.08663
2020 arXiv
-
[34]
Oord, A. v. d.; Li, Y.; and Vinyals, O. 2018. Representation learning with contrastive predictive coding. arXiv preprint arXiv:1807.03748
2018 arXiv
-
[35]
Paszke, A. 2019. Pytorch: An imperative style, high-performance deep learning library. arXiv preprint arXiv:1912.01703
2019 arXiv
-
[36]
W.; Hallacy, C.; Ramesh, A.; Goh, G.; Agarwal, S.; Sastry, G.; Askell, A.; Mishkin, P.; Clark, J.; et al
Radford, A.; Kim, J. W.; Hallacy, C.; Ramesh, A.; Goh, G.; Agarwal, S.; Sastry, G.; Askell, A.; Mishkin, P.; Clark, J.; et al. 2021. Learning transferable visual models from natural language supervision. In International conference on machine learning, 8748--8763. PmLR
2021
-
[37]
Rong, Y.; Huang, W.; Xu, T.; and Huang, J. 2019. Dropedge: Towards deep graph convolutional networks on node classification. arXiv preprint arXiv:1907.10903
2019 arXiv
-
[38]
Sterling, T.; and Irwin, J. J. 2015. ZINC 15--ligand discovery for everyone. Journal of chemical information and modeling, 55(11): 2324--2337
2015
-
[39]
Sun, F.-Y.; Hoffmann, J.; Verma, V.; and Tang, J. 2019. Infograph: Unsupervised and semi-supervised graph-level representation learning via mutual information maximization. arXiv preprint arXiv:1908.01000
2019 arXiv
-
[40]
Suresh, S.; Li, P.; Hao, C.; and Neville, J. 2021. Adversarial graph augmentation to improve graph contrastive learning. Advances in Neural Information Processing Systems, 34: 15920--15933
2021
-
[41]
Tan, S.; Li, D.; Jiang, R.; Zhang, Y.; and Okumura, M. 2024. Community-invariant graph contrastive learning. arXiv preprint arXiv:2405.01350
2024 arXiv
-
[42]
Tucker, L. R. 1966. Some mathematical notes on three-mode factor analysis. Psychometrika, 31(3): 279--311
1966
-
[43]
L.; Li \`o , P.; Bengio, Y.; and Hjelm, R
Veli c kovi \'c , P.; Fedus, W.; Hamilton, W. L.; Li \`o , P.; Bengio, Y.; and Hjelm, R. D. 2018. Deep graph infomax. arXiv preprint arXiv:1809.10341
2018 arXiv
-
[44]
Wang, S.; Wang, C.; Meng, P.; and Wang, Z. 2024 a . AFANS: Augmentation-Free Graph Contrastive Learning with Adversarial Negative Sampling. In International Conference on Intelligent Computing, 376--387. Springer
2024
-
[45]
Wang, Y.; Min, Y.; Chen, X.; and Wu, J. 2021. Multi-view graph contrastive representation learning for drug-drug interaction prediction. In Proceedings of the web conference 2021, 2921--2933
2021
-
[46]
Wang, Z.; Hu, H.; He, C.; and Li, P. 2023 a . Recognizing wafer map patterns using semi-supervised contrastive learning with optimized latent representation learning and data augmentation. In 2023 IEEE International Test Conference (ITC), 141--150. IEEE
2023
-
[47]
Wang, Z.; Liu, L.; Weston, S. R. F.; Tian, S.; and Li, P. 2024 b . On learning discriminative features from synthesized data for self-supervised fine-grained visual recognition. In European Conference on Computer Vision, 101--117. Springer
2024
-
[48]
N.; and Li, P
Wang, Z.; Somayaji, K. N.; and Li, P. 2024. Learn-by-Compare: Analog Performance Prediction using Contrastive Regression with Design Knowledge. In Proceedings of the 61st ACM/IEEE Design Automation Conference, 1--6
2024
-
[49]
Wang, Z.; Wang, Y.; Chen, Z.; Hu, H.; and Li, P. 2023 b . Contrastive learning with consistent representations. arXiv preprint arXiv:2302.01541
2023 arXiv
-
[50]
Wu, Y.; Zang, Z.; Zou, X.; Luo, W.; Bai, N.; Xiang, Y.; Li, W.; and Dong, W. 2025. Graph attention and Kolmogorov--Arnold network based smart grids intrusion detection. Scientific Reports, 15(1): 8648
2025
-
[51]
N.; Gomes, J.; Geniesse, C.; Pappu, A
Wu, Z.; Ramsundar, B.; Feinberg, E. N.; Gomes, J.; Geniesse, C.; Pappu, A. S.; Leswing, K.; and Pande, V. 2018. MoleculeNet: a benchmark for molecular machine learning. Chemical science, 9(2): 513--530
2018
-
[52]
Xia, J.; Wu, L.; Wang, G.; Chen, J.; and Li, S. Z. 2021. Progcl: Rethinking hard negative mining in graph contrastive learning. arXiv preprint arXiv:2110.02027
2021 arXiv
-
[53]
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. arXiv:2406.01034
2024 arXiv
-
[54]
You, Y.; Chen, T.; Shen, Y.; and Wang, Z. 2021. Graph contrastive learning automated. In International conference on machine learning, 12121--12132. PMLR
2021
-
[55]
You, Y.; Chen, T.; Sui, Y.; Chen, T.; Wang, Z.; and Shen, Y. 2020. Graph contrastive learning with augmentations. Advances in neural information processing systems, 33: 5812--5823
2020
-
[56]
Zhang, B.; Fan, C.; Liu, S.; Huang, K.; Zhao, X.; Huang, J.; and Liu, Z. 2024. The expressive power of graph neural networks: A survey. IEEE Transactions on Knowledge and Data Engineering
2024
-
[57]
Zhang, F.; and Zhang, X. 2024. GraphKAN: Enhancing Feature Extraction with Graph Kolmogorov Arnold Networks. arXiv:2406.13597
2024 arXiv
-
[58]
Zhang, Q.; Yang, C.; and Shi, C. 2024. Adaptive negative representations for graph contrastive learning. AI Open, 5: 79--86
2024
-
[59]
Zhu, Y.; Xu, Y.; Yu, F.; Liu, Q.; Wu, S.; and Wang, L. 2020. Deep graph contrastive representation learning. arXiv preprint arXiv:2006.04131
2020 arXiv
-
[60]
Zhu, Y.; Xu, Y.; Yu, F.; Liu, Q.; Wu, S.; and Wang, L. 2021. Graph contrastive learning with adaptive augmentation. In Proceedings of the web conference 2021, 2069--2080
2021
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.