modelc 0.1.3

Compile model weight files to standalone executable binaries
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub mod cli;
pub mod codegen;
pub mod compiler;
pub mod metal;
pub mod model;
pub mod pack;
pub mod parsers;
pub mod runtime;
pub mod serve;
pub mod store;

/// Semver plus short git SHA from `build.rs`, shown by `modelc --version`.
pub const CLI_VERSION: &str = concat!(
    env!("CARGO_PKG_VERSION"),
    " (git ",
    env!("MODELC_GIT_SHA"),
    ")"
);