CodeReclaimers / neat-python

Python implementation of the NEAT neuroevolution algorithm
BSD 3-Clause "New" or "Revised" License
1.41k stars 490 forks source link

Network Architecture #212

Closed kaptcha0 closed 3 years ago

kaptcha0 commented 3 years ago

Is there any way to get the architecture (the input nodes, hidden nodes, and output nodes) of the winner neural network after training? I need this as array/tuple format [number of input, number of hidden (could be array for multi-layered hidden nodes), number of output]. I don't want to use visualize.py because I'm running a console application.

BioWar commented 3 years ago

@kyro-dev How did you solve your issue?

kaptcha0 commented 3 years ago

No, I did not, I ended up using visualize.py. But even after that, it was difficult to understand the structure of the network.

BioWar commented 3 years ago

Well okay then, thanks for the quick response

kaptcha0 commented 3 years ago

No problem.