burn_dragon_core 0.21.0

burn dragon core model and utilities
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod block;
mod config;
mod history;
mod reference;

pub use block::BlockAttentionResidual;
pub use config::{
    AttentionResidualConfig, BlockAttentionResidualConfig, BlockAttentionResidualSummaryMode,
    ResidualConnectorKind,
};
pub(crate) use history::ResidualHistory;
pub use reference::AttentionResidual;

#[cfg(test)]
mod tests;