Crate neuralneat

source ·
Expand description

neuralneat is an implementation of the NeuroEvolution of Augmenting Topologies (NEAT) described in the June 2002 paper titled “Evolving Neural Networks through Augmenting Topologies” by Kenneth O. Stanley and Risto Miikkulainen.

Much of this implementation was also guided by the NEAT 1.2.1 source code.

Modules

  • The activation module contains basic activation functions that can be used with hidden and output layers of a Genome.
  • The defaults module contains the default values of all of the constants used by the Pool to create, mutate, and mate Genomes.

Structs