diff --git a/README.md b/README.md index 77c8ed5f..1cebe803 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,9 @@ # Kolmogorov-Arnold Newtworks (KANs) -This the github repo for the paper "KAN: Kolmogorov-Arnold Networks" [link]. The documentation can be found here [link]. +This the github repo for the paper "KAN: Kolmogorov-Arnold Networks" [link]. Find the documentation [here](https://kindxiaoming.github.io/pykan/). -Kolmogorov-Arnold Networks (KANs) are promising alternatives of Multi-Layer Perceptrons (MLPs). KANs have strong mathematical foundations just like MLPs: MLPs are based on the [universal approximation theorem](https://en.wikipedia.org/wiki/Universal_approximation_theorem), while KANs are based on [Kolmogorov-Arnold representation theorem](https://en.wikipedia.org/wiki/Kolmogorov%E2%80%93Arnold_representation_theorem). KANs and MLPs are dual: KANs have activation functions on edges, while MLPs have activation functions on nodes. This simple change makes KANs better (sometimes much better!) than MLPs in terms of both model accuracy and interpretability. +Kolmogorov-Arnold Networks (KANs) are promising alternatives of Multi-Layer Perceptrons (MLPs). KANs have strong mathematical foundations just like MLPs: MLPs are based on the universal approximation theorem, while KANs are based on Kolmogorov-Arnold representation theorem. KANs and MLPs are dual: KANs have activation functions on edges, while MLPs have activation functions on nodes. This simple change makes KANs better (sometimes much better!) than MLPs in terms of both model accuracy and interpretability. A quick intro of KANs [here](https://kindxiaoming.github.io/pykan/intro.html). mlp_kan_compare @@ -19,12 +19,23 @@ cd pykan pip install -e . ``` -**Installation via pypi (soon)** +**Installation via pypi** ```python pip install pykan ``` +Requirements + +```python +matplotlib==3.6.2 +numpy==1.24.4 +scikit_learn==1.1.3 +setuptools==65.5.0 +sympy==1.11.1 +torch==2.2.2 +tqdm==4.66.2 +``` To install requirements: ```python @@ -32,16 +43,16 @@ pip install -r requirements.txt ``` ## Documentation -The documenation can be found here []. +The documenation can be found [here](https://kindxiaoming.github.io/pykan/). ## Tutorials **Quickstart** -Get started with [hellokan.ipynb](./hellokan.ipynb) notebook +Get started with [hellokan.ipynb](./hellokan.ipynb) notebook. **More demos** -Jupyter Notebooks in [docs/Examples](./docs/Examples) and [docs/API_demo](./docs/API\_demo) are ready to play. You may also find these examples in documentation. +More Notebook tutorials can be found in [tutorials](tutorials).