PowerMLP: An Efficient Version of KAN
Ruichen Qiu, Yibo Miao, Shiwen Wang, Lijia Yu, Yifan Zhu, Xiao-Shan Gao
TL;DR
The paper tackles the slow training and inference associated with Kolmogorov-Arnold Networks (KAN) by introducing PowerMLP, an MLP-like architecture that uses a non-iterative spline representation via $k$-th power ReLU activations and a basis function. The authors prove that PowerMLP defines the same function space as KAN over bounded intervals and a strictly larger space over the real line, while achieving significantly lower FLOPs than KAN. Empirically, PowerMLP attains higher accuracy on many tasks and trains roughly 40 times faster than KAN across AI-for-science, ML, NLP, and CV benchmarks. This yields a practical, efficient alternative to KAN with broad applicability as a drop-in architectural substitute while retaining or enhancing expressiveness. The work also provides a theoretical bridge between spline-based activation schemes and polynomial activations, underpinning the transferability of PowerMLP into existing architectures like CNNs and Transformers.
Abstract
The Kolmogorov-Arnold Network (KAN) is a new network architecture known for its high accuracy in several tasks such as function fitting and PDE solving. The superior expressive capability of KAN arises from the Kolmogorov-Arnold representation theorem and learnable spline functions. However, the computation of spline functions involves multiple iterations, which renders KAN significantly slower than MLP, thereby increasing the cost associated with model training and deployment. The authors of KAN have also noted that ``the biggest bottleneck of KANs lies in its slow training. KANs are usually 10x slower than MLPs, given the same number of parameters.'' To address this issue, we propose a novel MLP-type neural network PowerMLP that employs simpler non-iterative spline function representation, offering approximately the same training time as MLP while theoretically demonstrating stronger expressive power than KAN. Furthermore, we compare the FLOPs of KAN and PowerMLP, quantifying the faster computation speed of PowerMLP. Our comprehensive experiments demonstrate that PowerMLP generally achieves higher accuracy and a training speed about 40 times faster than KAN in various tasks.
