rumus 0.3.1

A native-Rust deep learning framework with explicit memory safety and hardware acceleration
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// SPDX-License-Identifier: Apache-2.0 OR MIT
pub mod autograd;
pub mod backend;
pub mod data;
#[cfg(feature = "gpu")]
pub mod ext;
pub mod nn;
#[cfg(feature = "jit")]
pub mod jit;
#[cfg(feature = "onnx")]
pub mod onnx;
pub mod optim;
pub mod tensor;
pub mod train;