LGJun 26, 2024

KAGNNs: Kolmogorov-Arnold Networks meet Graph Learning

arXiv:2406.18380v495 citationsHas Code
Originality Synthesis-oriented
AI Analysis

This work addresses the need for more effective universal approximators in graph learning for researchers and practitioners, but it is incremental as it adapts an existing method (KANs) to a new domain (GNNs).

The paper tackles the problem of improving Graph Neural Networks (GNNs) by replacing MLPs with Kolmogorov-Arnold Networks (KANs) in graph learning tasks, finding that KANs perform on-par or better than MLPs across node classification, link prediction, graph classification, and graph regression datasets, with RBF-based KANs showing only marginally higher size and training speed.

In recent years, Graph Neural Networks (GNNs) have become the de facto tool for learning node and graph representations. Most GNNs typically consist of a sequence of neighborhood aggregation (a.k.a., message-passing) layers, within which the representation of each node is updated based on those of its neighbors. The most expressive message-passing GNNs can be obtained through the use of the sum aggregator and of MLPs for feature transformation, thanks to their universal approximation capabilities. However, the limitations of MLPs recently motivated the introduction of another family of universal approximators, called Kolmogorov-Arnold Networks (KANs) which rely on a different representation theorem. In this work, we compare the performance of KANs against that of MLPs on graph learning tasks. We implement three new KAN-based GNN layers, inspired respectively by the GCN, GAT and GIN layers. We evaluate two different implementations of KANs using two distinct base families of functions, namely B-splines and radial basis functions. We perform extensive experiments on node classification, link prediction, graph classification and graph regression datasets. Our results indicate that KANs are on-par with or better than MLPs on all tasks studied in this paper. We also show that the size and training speed of RBF-based KANs is only marginally higher than for MLPs, making them viable alternatives. Code available at https://github.com/RomanBresson/KAGNN.

Code Implementations1 repo
Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes