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
14
15
16
17
// autograd/scalar/mod.rs
mod base;
mod shape;
mod utils;
mod ops;
mod creation;
mod storage;
mod device;

// Re-export everything we want to be publicly accessible
pub use base::*;
pub use shape::*;
pub use utils::*;
pub use ops::*;
pub use creation::*;
pub use storage::*;
pub use device::*;