onnx-export-rs 0.1.1

Export canonical Rust machine-learning models to ONNX
Documentation
1
2
3
4
5
6
7
8
9
10
//! Adapters from fitted models in supported training libraries.

#[cfg(feature = "linfa")]
pub mod linfa;
#[cfg(feature = "linfa-compat")]
pub mod linfa_compat;
#[cfg(feature = "smartcore")]
pub mod smartcore;
#[cfg(feature = "smartcore-compat")]
pub mod smartcore_compat;