burn-nn 0.21.0

Neural network building blocks for the Burn deep learning framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod gate_controller;

/// Basic RNN.
pub mod basic;

/// Gated Recurrent Unit module.
pub mod gru;

/// Long Short-Term Memory module.
pub mod lstm;

pub use basic::*;
pub use gate_controller::*;
pub use gru::*;
pub use lstm::*;