brique-rs 0.2.2

A MLP library made from scratch, using the rust standard lib
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[derive(Clone, Debug)]
pub enum Optimizer {
    SGD {
        learning_step: f64,
    },
    Adam {
        learning_step: f64,
        beta1: f64,
        beta2: f64,
    },
}