Skip to main content

Quantum-inspired Kolmogorov Arnold Networks

Project description

QKAN: Quantum-inspired Kolmogorov-Arnold Network

1National Taiwan University  2UNC Chapel Hill 

page arXiv pypi License DOI

This is the official repository for the paper: "Quantum Variational Activation Functions Empower Kolmogorov-Arnold Networks"

📖 Documentation: https://qkan.jimq.cc/

We provide a PyTorch implementation of QKAN with:

  • Pre- and post-activation processing support
  • Grouped QVAFs for efficient training
  • Plot the nodes and pruning unnecessary nodes
  • Layer extension for more complex features
  • and more ...

A basic PennyLane version of the quantum circuit is also included for demonstration, but not optimized for performance.

2026-03: Released v0.2.0 with a more efficient quantum circuit implementation—using cuQuantum for the cutn solver and Triton for the flash solver—which significantly speeds up the activation function.

Installation

You can install QKAN using pip:

pip install qkan

If you want to install the latest development version, you can use:

pip install git+https://github.com/Jim137/qkan.git

To use the GPU-optimized solvers (including flash and cutn solver), you can install with the gpu extra:

pip install qkan[gpu]

Quick Start

Here's a minimal working example for function fitting using QKAN:

import torch

from qkan import QKAN, create_dataset

device = "cuda" if torch.cuda.is_available() else "cpu"

f = lambda x: torch.sin(20*x)/x/20 # J_0(20x)
dataset = create_dataset(f, n_var=1, ranges=[0,1], device=device, train_num=1000, test_num=1000, seed=0)

qkan = QKAN(
    [1, 1], 
    reps=3, 
    device=device, 
    seed=0,
    preact_trainable=True, 
    postact_weight_trainable=True,
    postact_bias_trainable=True, 
    ba_trainable=True,
    save_act=True, # enable to plot from saved activation
)

optimizer = torch.optim.LBFGS(qkan.parameters(), lr=5e-2)

qkan.train_(
    dataset,
    steps=100,
    optimizer=optimizer,
    reg_metric="edge_forward_dr_n",
)

qkan.plot(from_acts=True, metric=None)

You can find more examples in the examples for different tasks, such as function fitting, classification, and generative modeling.

Solver Guiding

Case Device Recommended solver Why Notes
Small models, CPU runs, debugging, or you want a trusted baseline CPU (or GPU) exact (default) Simple + “reference” behavior First run may include one-time init overhead—do a warmup step before timing.
Most training workloads (medium → large models) / inference GPU flash Best overall speed / memory tradeoff in these benchmarks Good first choice for practical GPU training.
Extremely large / memory-bound runs (near OOM, very large layers/batches) GPU cutn Best scaling and peak-memory reduction in the extreme benchmark Can be slower than flash on mid-size problems; use when size/memory dominates.

Ansatz choice (pz vs real)

  • Default: pz — most reliable quality across tasks.
  • real can be faster/smaller, but may hurt accuracy/convergence on some workloads—only use if you validate it on your task.

See #8 for more discussion on solver choices and tradeoffs.

Contributing

We are very welcome to all kinds of contributions, including but not limited to bug reports, documentation improvements, and code contributions.

To start contributing, please fork the repository and create a new branch for your feature or bug fix. Then, submit a pull request with a clear description of your changes.

In your environment, you can install the development dependencies with:

# clone your forked repository and navigate to the project directory
# for example `git clone https://github.com/Jim137/qkan.git && cd qkan`

pip install -e .[dev] # install development dependencies
pip install -e .[doc] # install documentation dependencies
pip install -e .[all] # install all optional dependencies

Citation

@article{jiang2025qkan,
  title={Quantum Variational Activation Functions Empower Kolmogorov-Arnold Networks},
  author={Jiang, Jiun-Cheng and Huang, Morris Yu-Chao and Chen, Tianlong and Goan, Hsi-Sheng},
  journal={arXiv preprint arXiv:2509.14026},
  year={2025},
  url={https://arxiv.org/abs/2509.14026}
}
@misc{jiang2025qkan_software,
  title={QKAN: Quantum-inspired Kolmogorov-Arnold Network},
  author={Jiang, Jiun-Cheng},
  year={2025},
  publisher={Zenodo},
  doi={10.5281/zenodo.17437425},
  url={https://doi.org/10.5281/zenodo.17437425}
}

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

qkan-0.2.0.tar.gz (60.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

qkan-0.2.0-py3-none-any.whl (61.8 kB view details)

Uploaded Python 3

File details

Details for the file qkan-0.2.0.tar.gz.

File metadata

  • Download URL: qkan-0.2.0.tar.gz
  • Upload date:
  • Size: 60.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for qkan-0.2.0.tar.gz
Algorithm Hash digest
SHA256 ae4ea98ea703c3bb82123a394a9678d437b7969ed07034ef6c0626d494743f4b
MD5 9720fd76a69636258951056b8b14a469
BLAKE2b-256 9ad2c65e7ce18baa3d3d98e6f9eda69c2a98a3fffd3b75cd0e8e5382a5cb88db

See more details on using hashes here.

Provenance

The following attestation bundles were made for qkan-0.2.0.tar.gz:

Publisher: publish.yml on Jim137/qkan

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qkan-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: qkan-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 61.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for qkan-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 e24ffd383eb4b0b5c7a6f04a184e4973150f9130e0abcb0bdb45b51f11307f16
MD5 7b9bfeaa708b4031d165a487938fafc3
BLAKE2b-256 df3958f67b6100d0798a62df225512d23b3ff8c1d36dabce6315252fbd04a576

See more details on using hashes here.

Provenance

The following attestation bundles were made for qkan-0.2.0-py3-none-any.whl:

Publisher: publish.yml on Jim137/qkan

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page