rumus 0.2.2

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