ferrite-dl 0.2.0

Deep learning library written in pure Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// tensor_storage/mod.rs
mod arithmetic;        // Internal module
mod blas;         // Internal module
mod reduction;    // Internal module
mod transform;       // Internal module
mod activation;

// Re-export what you want public
pub use arithmetic::*;
pub use blas::*;
pub use reduction::*;
pub use transform::*;
pub use activation::*;