Skip to content

Commit

Permalink
Add initial KAN notes
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Bevenius <[email protected]>
  • Loading branch information
danbev committed May 18, 2024
1 parent 0097aa1 commit 53c97b9
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions notes/kan.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
## Kolmogorov-Arnold Networks (KAN)
Is bascially a suggestion to replace the multipli layer percpetron (MLP) in
neural networks. In MPL we have weights that are learnable and non-linear
functions in the neurons which are fixed (they can be different functions but
they are not changed during training, they are not learnable only the weights
are). In KAN there are no weights, instead they are replaced with univariant
functions (functions with one independent variable) that are learnable.

So what is the advantage of KAN over MLP?
They can outperform MLP in terms of accuracy and interperprability
(understanding what is happening in the network is my understanding of this).

* Paper: https://arxiv.org/html/2404.19756v1

### Architecture
TODO:

0 comments on commit 53c97b9

Please sign in to comment.