burn-nn 0.20.1

Neural network building blocks for the Burn deep learning framework
Documentation
/// Attention module
pub mod attention;

/// Cache module
pub mod cache;

/// Convolution module
pub mod conv;

/// Pooling module
pub mod pool;

/// Transformer module
pub mod transformer;

/// Interpolate module
pub mod interpolate;

mod dropout;
mod embedding;
mod linear;
mod noise;
mod pos_encoding;
mod rnn;
mod rope_encoding;
mod unfold;

pub mod norm;
pub use norm::{batch::*, group::*, instance::*, layer::*, rms::*};

pub use dropout::*;
pub use embedding::*;
pub use linear::*;
pub use noise::*;
pub use pos_encoding::*;
pub use rnn::*;
pub use rope_encoding::*;
pub use unfold::*;