zenu-layer 0.1.1

A simple neural network layer library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod builder;
mod gru;
mod inner;
mod lstm;
#[expect(clippy::module_inception)]
mod rnn;

pub use gru::*;
pub use inner::Activation;
pub use lstm::*;
pub use rnn::*;