neural_network 0.1.3

Modular neural network with an implementation of back propagation learning algorithm.
Documentation
1
2
3
4
5
6
7
8
9
use std::time::Duration;

#[derive(Clone, Debug)]
pub struct TrainingResult {
    pub duration: Duration,
    pub epochs: u64,
    pub error: f64,
    pub min_error: f64
}