onnx-std 0.1.0-dev.5

Pure-Rust ONNX standard library: model I/O, textual format, and an extensible validator, built on the shared onnx-runtime-ir IR (see docs/ONNX_RS.md)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Textual representation of ONNX models (ONNX_RS ยง5).
//!
//! Implements both directions of the readable format: [`to_text`] renders an
//! owned model and [`from_text`] reconstructs one. Weight and tensor payloads
//! are intentionally represented by typed references/placeholders rather than
//! embedding binary data.

mod de;
mod extensions;
mod ser;

pub use de::from_text;
pub use ser::{PrintOptions, to_text, to_text_with};