burn-core 0.18.0

Flexible and Comprehensive Deep Learning Framework in Rust
Documentation
/// Attention module
pub mod attention;

/// Cache module
pub mod cache;

/// Convolution module
pub mod conv;

/// Loss module
pub mod loss;

/// Pooling module
pub mod pool;

/// Transformer module
pub mod transformer;

/// Interpolate module
pub mod interpolate;

mod dropout;
mod embedding;
mod gelu;
mod hard_sigmoid;
mod initializer;
mod leaky_relu;
mod linear;
mod norm;
mod padding;
mod pos_encoding;
mod prelu;
mod relu;
mod rnn;
mod rope_encoding;
mod sigmoid;
mod swiglu;
mod tanh;
mod unfold;

pub use dropout::*;
pub use embedding::*;
pub use gelu::*;
pub use hard_sigmoid::*;
pub use initializer::*;
pub use leaky_relu::*;
pub use linear::*;
pub use norm::*;
pub use padding::*;
pub use pos_encoding::*;
pub use prelu::*;
pub use relu::*;
pub use rnn::*;
pub use rope_encoding::*;
pub use sigmoid::*;
pub use swiglu::*;
pub use tanh::*;
pub use unfold::*;