burn-nn 0.20.1

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

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

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

pub use gate_controller::*;
pub use lstm::*;