odify genome for the official release

This commit is contained in:
root
2024-07-10 11:24:11 +08:00
parent 075460f896
commit ee8ec84202
83 changed files with 588 additions and 611 deletions

View File

@@ -4,7 +4,7 @@ import numpy as np
import jax, jax.numpy as jnp
import sympy as sp
from utils import (
from tensorneat.common import (
Act,
Agg,
act_func,

View File

@@ -3,7 +3,7 @@ from typing import Tuple
import jax, jax.numpy as jnp
import numpy as np
import sympy as sp
from utils import (
from tensorneat.common import (
Act,
Agg,
act_func,

View File

@@ -1,6 +1,6 @@
import jax.numpy as jnp
from . import BaseNodeGene
from utils import Agg
from tensorneat.common import Agg
class KANNode(BaseNodeGene):

View File

@@ -2,7 +2,7 @@ from typing import Tuple
import jax, jax.numpy as jnp
from utils import Act, Agg, act_func, agg_func, mutate_int, mutate_float
from tensorneat.common import Act, Agg, act_func, agg_func, mutate_int, mutate_float
from . import BaseNodeGene

View File

@@ -2,7 +2,7 @@ from typing import Tuple
import jax, jax.numpy as jnp
from utils import Act, Agg, act_func, agg_func, mutate_int, mutate_float
from tensorneat.common import Act, Agg, act_func, agg_func, mutate_int, mutate_float
from . import BaseNodeGene