rotta_rs 0.0.5

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

mod div;
pub use div::*;

mod mul;
pub use mul::*;

mod sub;
pub use sub::*;

mod matmul;
pub use matmul::*;

mod dot;
pub use dot::*;