1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22

//! A machine learning library with a 1st order learning approach
//! =============================================================
//!
//!
//! Introduction
//! ------------
//!
//! Install
//! ------------
//!
//! Example
//! ------------
//!
//! Licese
//! ------------

extern crate ndarray;
extern crate ndarray_linalg;

pub mod tensor;