neural_network 0.1.3

Modular neural network with an implementation of back propagation learning algorithm.
Documentation
1
2
3
4
5
6
#[derive(Copy, Clone, PartialEq, Debug)]
pub struct LearningParameters {
    pub learning_rate: f64,
    pub momentum: f64,
    pub weight_decay: f64
}