rumus 0.2.3

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
// SPDX-License-Identifier: Apache-2.0 OR MIT
//! ONNX model export via graph tracing.
//!
//! Feature-gated behind `--features onnx`.

pub mod export;
pub mod proto;
pub mod tracer;

pub use export::{export_onnx, export_onnx_with_opset, OnnxError};
pub use tracer::{TracedAttribute, TracedGraph, TracedNode, ValueInfo};