1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
#[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;
mod utils;