Crate profqu_neat

Source
Expand description

A crate that implements the NEAT algorithm Created according to a tutorial from Finn Eggers. I tried to implement NEAT from the official github repository, but I couldn’t figure out how to do it, so I used Finn’s implementation.

Then I looked on Youtube and found Finn Eggers and his tutorial really helped me with creating this library.

Doesn’t allow recurrent connections in the networks.

Re-exports§

pub use neat::Neat;

Modules§

calculations
The calculations required to calculate any genomes output
data_structures
A few data structures used in this library.
genome
The module this crate uses to create and mutate/evolve genomes
neat
The main module where all the evolution happens