neat-python icon indicating copy to clipboard operation
neat-python copied to clipboard

Python implementation of the NEAT neuroevolution algorithm

Results 132 neat-python issues
Sort by recently updated
recently updated
newest added

I attempt to run the code derived from evolve-feedforward.py as is, installing the visualize module on Pycharm, using neat-python 0.92, only to be met with `AttributeError: module 'visualize' has no...

**Is your feature request related to a problem? Please describe.** While using the module, I noticed that it would not reduce the nodes and optimize/simplify the networks. It might be...

Hello, this is my first time using neat-python, and it is also my first time posting an issue report on GitHub. I apologize if I break any unspoken rules or...

## Description I just found out that the original version of the Lunar Lander example was able to land successfully sometimes. In the current code, it never even gets remotely...

I'll take a stab at a root-cause and PR after my current project. Apologies if this is a dupe, case of operator-error, or no longer an issue; I'm new to...

When running in parallel I keep getting the fitness to 0. ![image](https://github.com/CodeReclaimers/neat-python/assets/38215878/d6a44af7-e6f9-46ae-9de8-f69f45975c78) [train.zip](https://github.com/CodeReclaimers/neat-python/files/15223833/train.zip)

When running in parallel I keep getting the fitness to 0. ![image](https://github.com/CodeReclaimers/neat-python/assets/38215878/5b1f9538-33b2-404b-aa2a-ade3b365db02)

- Fix FeedForwardNetwork wrong creation, where some useless node were use to create the network and some usufull ones were disregarded - and remove the possibility for the ouput to...

I am trying to have a CTRNN emulate a sine function and want to use the [CTRNN demo neurons](https://github.com/CodeReclaimers/neat-python/blob/37bc8bb73fd6153a115001c2646f9f02bac3ad81/examples/neuron-demo/demo-ctrnn.py) as seed. The neurons that I try to modify, however, are...

Because I have set it to use a random activation function, but my output is ranged from −1 to 1, so I need to specify the use of the tanh...