anamnesis 0.5.0

Parse any tensor format, recover any precision — framework-agnostic FP8/GPTQ/AWQ/BnB dequantization, NPZ parsing, and PyTorch .pth conversion for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// SPDX-License-Identifier: MIT OR Apache-2.0

//! `amn` binary entry point — short alias for `anamnesis`. The actual CLI
//! implementation lives in [`anamnesis::cli`] so it compiles exactly once
//! and links into both the `anamnesis` and `amn` binaries.

fn main() {
    if let Err(e) = anamnesis::cli::run() {
        eprintln!("error: {e}");
        std::process::exit(1);
    }
}