auto-diff 0.3.2

A neural network library in Rust.
Documentation

//! 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 tensor;
pub mod op;
pub mod collection;
pub mod rand;
pub mod optim;