kratom 1.0.1

Simple neural network library.
Documentation
1
2
3
4
5
6
7
8
9
10
pub mod regular;
pub mod hadamard;



pub trait Multiplier {
    fn multiply(&mut self, a: &[f32], b: &[f32], sizes: (usize, usize, usize), c: &mut [f32]) -> ();
}