adtensor 0.0.3

Machine learning library with auto differentiation of arbitrary dimensional stack tensors.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod vector;
pub use vector::*;
pub mod matrix;
pub use matrix::*;

#[macro_use]
pub mod tensor;
pub use tensor::*;
pub mod ops;
pub use ops::*;
pub mod tensor_ops;
pub use tensor_ops::*;