burn-import 0.14.0

Library for importing datamodels into the Burn framework
Documentation
#[cfg(feature = "onnx")]
use burn_import::onnx::{ModelGen, RecordType};

#[cfg(feature = "onnx")]
/// Takes an ONNX file and generates a model from it
fn main() {
    let onnx_file = std::env::args().nth(1).expect("No input file provided");
    let output_dir = std::env::args()
        .nth(2)
        .expect("No output directory provided");

    // Generate the model code from the ONNX file.
    ModelGen::new()
        .input(onnx_file.as_str())
        .development(true)
        .record_type(RecordType::PrettyJson)
        .out_dir(output_dir.as_str())
        .run_from_cli();
}

#[cfg(not(feature = "onnx"))]
fn main() {
    println!("Compiled without Pytorch feature.");
}