rust-mlp 0.1.0

Small, from-scratch MLP (dense feed-forward) for Rust: predictable, allocation-free hot path, batched training, and optional fast GEMM backend.
Documentation
1
2
3
4
5
6
7
8
//! Optional binary entry point.
//!
//! This crate is primarily a library. The binary exists so `cargo run` does something
//! friendly during development.

fn main() {
    println!("rust-mlp: run `cargo run --example tanh_sum`");
}