neat_lib 0.1.1

Rust implementation of NeuroEvolution of Augmenting Topologies
Documentation
1
2
3
4
5
6
7
8
9
pub(crate) mod feedforward;
pub(crate) mod layer;

pub trait Network {
    fn evalute(&mut self, inputs: Vec<f64>) -> Vec<f64>;
}

pub use feedforward::*;