juggernaut 0.9.0

Neural Network in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[macro_use]
extern crate assert_approx_eq;

extern crate rand;

mod math;
pub mod matrix;
pub mod activation;
pub mod nl;
pub mod nn;
pub mod sample;
pub mod cost;
mod utils;