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
//! 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 compute_graph;
pub mod op;
pub mod collection;
pub mod rand;
pub mod optim;
pub use var::{Module, Var};