44 lines
1.3 KiB
Python
44 lines
1.3 KiB
Python
from tensorneat.pipeline import Pipeline
|
|
from tensorneat.algorithm.neat import NEAT
|
|
from tensorneat.algorithm.hyperneat import HyperNEAT, FullSubstrate
|
|
from tensorneat.genome import DefaultGenome
|
|
from tensorneat.common import ACT
|
|
|
|
from tensorneat.problem.func_fit import XOR3d
|
|
|
|
if __name__ == "__main__":
|
|
pipeline = Pipeline(
|
|
algorithm=HyperNEAT(
|
|
substrate=FullSubstrate(
|
|
input_coors=((-1, -1), (-0.33, -1), (0.33, -1), (1, -1)),
|
|
hidden_coors=((-1, 0), (0, 0), (1, 0)),
|
|
output_coors=((0, 1),),
|
|
),
|
|
neat=NEAT(
|
|
pop_size=10000,
|
|
species_size=20,
|
|
survival_threshold=0.01,
|
|
genome=DefaultGenome(
|
|
num_inputs=4, # size of query coors
|
|
num_outputs=1,
|
|
init_hidden_layers=(),
|
|
output_transform=ACT.standard_tanh,
|
|
),
|
|
),
|
|
activation=ACT.tanh,
|
|
activate_time=10,
|
|
output_transform=ACT.standard_sigmoid,
|
|
),
|
|
problem=XOR3d(),
|
|
generation_limit=300,
|
|
fitness_target=-1e-6,
|
|
)
|
|
|
|
# initialize state
|
|
state = pipeline.setup()
|
|
# print(state)
|
|
# run until terminate
|
|
state, best = pipeline.auto_run(state)
|
|
# show result
|
|
pipeline.show(state, best)
|