rotta_rs 0.1.0

a Deep Learning library with rust language
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod sgd;
pub use sgd::*;

mod sgd_momen;
pub use sgd_momen::*;

mod ada_grad;
pub use ada_grad::*;

mod rmsprop;
pub use rmsprop::*;

mod adam;
pub use adam::*;