rusty_kan

Crates.iorusty_kan
lib.rsrusty_kan
version0.1.1
created_at2024-12-24 10:04:49.383598+00
updated_at2024-12-24 10:08:52.708708+00
descriptionAn implementation of Kolmogorov-Arnold Networks in Rust
homepage
repositoryhttps://github.com/LordSaumya/DeepIron
max_upload_size
id1493781
size104,745
Saumya Shah (LordSaumya)

documentation

README

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

Commit count: 194

cargo fmt