Skip to content

Commit

Permalink
oops
Browse files Browse the repository at this point in the history
  • Loading branch information
srigas committed Jun 11, 2024
1 parent e011116 commit be15844
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion jaxkan/models/KAN.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from flax.linen import initializers
from flax.core import unfreeze

from models.KANLayer import KANLayer
from .KANLayer import KANLayer


class KAN(nn.Module):
Expand Down
4 changes: 2 additions & 2 deletions jaxkan/models/KANLayer.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
from flax import linen as nn
from flax.linen import initializers

from bases.splines import get_spline_basis
from utils.general import solve_full_lstsq
from ..bases.splines import get_spline_basis
from ..utils.general import solve_full_lstsq


class KANLayer(nn.Module):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='jaxkan',
version='0.1.1',
version='0.1.3',
packages=find_packages(),
install_requires=[
'numpy==1.26.4',
Expand Down

0 comments on commit be15844

Please sign in to comment.