aprender 0.60.0

Next-generation ML framework in pure Rust — `cargo install aprender` for the `apr` CLI
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! `apr` — the Aprender CLI.
//!
//! `cargo install aprender` installs this binary.
//! All logic lives in the `apr-cli` workspace crate (internal library).

// PMAT-124: enforce `// SAFETY:` on every unsafe block in the `apr` binary.
#![deny(clippy::undocumented_unsafe_blocks)]

fn main() -> std::process::ExitCode {
    apr_cli::cli_main()
}