//! `burn-onnx` is a crate designed to simplify the process of importing models trained in other
//! machine learning frameworks into the Burn framework via the ONNX format. It generates the Rust
//! source code that aligns the imported model with Burn and converts tensor data into a compatible
//! format.
extern crate derive_new;
/// The module for generating the burn code.
pub use *;
pub use *;