-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5ac3a58
commit 5ce9200
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Kolmogorov-Arnold Newtworks | ||
|
||
This the github repo for the paper "KAN: Kolmogorov-Arnold Networks" [link]. The documentation can be found here [link]. | ||
|
||
<p align="center"> | ||
<img width="1000" alt="kan_plot" src="https://github.com/KindXiaoming/pykan/assets/23551623/a2d2d225-b4d2-4c1e-823e-bc45c7ea96f9"> | ||
</p> | ||
|
||
## Installation | ||
There are two ways to install pykan, through pypi or github. | ||
|
||
**Installation via pypi** | ||
|
||
```python | ||
pip install pykan | ||
``` | ||
|
||
**Installation via github** | ||
|
||
```python | ||
git clone https://github.com/KindXiaoming/pykan.git | ||
cd pykan | ||
pip install -e . | ||
``` | ||
|
||
To install requirements: | ||
```python | ||
pip install -r requirements.txt | ||
``` |