pub struct TransformerEncoderBlock {
pub mha: MultiHeadAttention,
pub ffn: FeedForward,
pub ln1_gamma: Tensor,
pub ln1_beta: Tensor,
pub ln2_gamma: Tensor,
pub ln2_beta: Tensor,
pub d_model: usize,
}Expand description
Transformer encoder block: MHA -> Add&Norm -> FFN -> Add&Norm.
Fields§
§mha: MultiHeadAttention§ffn: FeedForward§ln1_gamma: Tensor§ln1_beta: Tensor§ln2_gamma: Tensor§ln2_beta: Tensor§d_model: usizeImplementations§
Auto Trait Implementations§
impl Freeze for TransformerEncoderBlock
impl RefUnwindSafe for TransformerEncoderBlock
impl Send for TransformerEncoderBlock
impl Sync for TransformerEncoderBlock
impl Unpin for TransformerEncoderBlock
impl UnsafeUnpin for TransformerEncoderBlock
impl UnwindSafe for TransformerEncoderBlock
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more