rust-ml 0.1.5

A collection of machine learning algorithms implemented in pure Rust (personal project for practice).
Documentation
1
2
3
4
5
6
7
#[derive(Copy, Clone, Debug)]
pub enum ActivationFn {
    Sigmoid,
    ReLU,
    Tanh,
    LeakyReLU,
}