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
12
//! Aprender — Next-generation ML framework in pure Rust.
//!
//! This facade crate re-exports `aprender-core` so that
//! `use aprender::*` works whether you depend on `aprender`
//! or `aprender-core` directly.
//!
//! Install the CLI: `cargo install aprender`

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

pub use aprender_ml::*;