//! `burn-import` is a crate designed to simplify the process of importing models trained in other
//! machine learning frameworks into the Burn framework. This tool generates a Rust source file that
//! aligns the imported model with Burn's model and converts tensor data into a format compatible with
//! Burn.
extern crate derive_new;
// Enabled when the `pytorch` or `onnx` feature is enabled.
/// The onnx module.
/// The module for generating the burn code.
/// The PyTorch module for recorder.
pub use *;