1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
//! A machine learning library with a 1st order learning approach
//! =============================================================
//!
//!
//! Introduction
//! ------------
//!
//! Install
//! ------------
//!
//! Example
//! ------------
//!
//! Licese
//! ------------
extern crate ndarray;
extern crate ndarray_linalg;
pub mod var;
pub mod op;
pub mod rand;
pub mod optim;
pub mod err;
pub use var::{Var};
pub(crate) mod compute_graph;
pub(crate) mod collection;