2 releases

0.1.1 Dec 24, 2024
0.1.0 Dec 24, 2024

#316 in Machine learning

Download history 230/week @ 2024-12-23 3/week @ 2025-01-06

233 downloads per month

MIT license

105KB
1.5K SLoC

Rusty-KAN

Kolmogorov-Arnold Networks are a type of neural network that is based on the Kolmogorov-Arnold representation theorem. Essentially, it states that any continuous function can be represented as a composition of a finite number of univariate functions.

Therefore, a KAN is a neural network where the activation functions are placed on the edges and act as learnable weights for the network. The nodes simply sum the incoming activations.

For example, see the following image, which shows how functions are composed in a KAN to approximate continuous functions: alt text

This is the basis of the Rusty-KAN library, which is a Rust implementation of the KAN.

Installation

To install Rusty-KAN, simply add the following line to your Cargo.toml file:

[dependencies]
rusty-kan = "0.1.0"

References

Dependencies

~315KB