Struct burn::nn::transformer::PositionWiseFeedForward
pub struct PositionWiseFeedForward<B>where
B: Backend,{
pub linear_inner: Linear<B>,
pub linear_outer: Linear<B>,
pub dropout: Dropout,
pub gelu: Gelu,
}
Expand description
Applies the position-wise feed-forward network to the input tensor from the paper Attention Is All You Need.
§Params
- linear inner: Linear layer with
d_model
input features andd_ff
output features. - linear outer: Linear layer with
d_ff
input features andd_model
output features.
FFN(x) = max(0, xW1 + b1)W2 + b2
Should be created using PositionWiseFeedForwardConfig
Fields§
§linear_inner: Linear<B>
Linear layer with d_model
input features and d_ff
output features.
linear_outer: Linear<B>
Linear layer with d_ff
input features and d_model
output features.
dropout: Dropout
Dropout layer.
gelu: Gelu
GELU activation function.
Implementations§
Trait Implementations§
§impl<B> AutodiffModule<B> for PositionWiseFeedForward<B>
impl<B> AutodiffModule<B> for PositionWiseFeedForward<B>
§type InnerModule = PositionWiseFeedForward<<B as AutodiffBackend>::InnerBackend>
type InnerModule = PositionWiseFeedForward<<B as AutodiffBackend>::InnerBackend>
Inner module without auto-differentiation.
§fn valid(
&self,
) -> <PositionWiseFeedForward<B> as AutodiffModule<B>>::InnerModule
fn valid( &self, ) -> <PositionWiseFeedForward<B> as AutodiffModule<B>>::InnerModule
Get the same module, but on the inner backend without auto-differentiation.
§impl<B> Clone for PositionWiseFeedForward<B>where
B: Backend,
impl<B> Clone for PositionWiseFeedForward<B>where
B: Backend,
§fn clone(&self) -> PositionWiseFeedForward<B>
fn clone(&self) -> PositionWiseFeedForward<B>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl<B> Debug for PositionWiseFeedForward<B>
impl<B> Debug for PositionWiseFeedForward<B>
§impl<B> Display for PositionWiseFeedForward<B>where
B: Backend,
impl<B> Display for PositionWiseFeedForward<B>where
B: Backend,
§impl<B> Module<B> for PositionWiseFeedForward<B>where
B: Backend,
impl<B> Module<B> for PositionWiseFeedForward<B>where
B: Backend,
§type Record = PositionWiseFeedForwardRecord<B>
type Record = PositionWiseFeedForwardRecord<B>
Type to save and load the module.
§fn load_record(
self,
record: <PositionWiseFeedForward<B> as Module<B>>::Record,
) -> PositionWiseFeedForward<B>
fn load_record( self, record: <PositionWiseFeedForward<B> as Module<B>>::Record, ) -> PositionWiseFeedForward<B>
Load the module state from a record.
§fn into_record(self) -> <PositionWiseFeedForward<B> as Module<B>>::Record
fn into_record(self) -> <PositionWiseFeedForward<B> as Module<B>>::Record
Convert the module into a record containing the state.
§fn num_params(&self) -> usize
fn num_params(&self) -> usize
Get the number of parameters the module has, including all of its sub-modules.
§fn visit<Visitor>(&self, visitor: &mut Visitor)where
Visitor: ModuleVisitor<B>,
fn visit<Visitor>(&self, visitor: &mut Visitor)where
Visitor: ModuleVisitor<B>,
Visit each tensor parameter in the module with a visitor.
§fn map<Mapper>(self, mapper: &mut Mapper) -> PositionWiseFeedForward<B>where
Mapper: ModuleMapper<B>,
fn map<Mapper>(self, mapper: &mut Mapper) -> PositionWiseFeedForward<B>where
Mapper: ModuleMapper<B>,
Map each tensor parameter in the module with a mapper.
§fn collect_devices(
&self,
devices: Vec<<B as Backend>::Device>,
) -> Vec<<B as Backend>::Device>
fn collect_devices( &self, devices: Vec<<B as Backend>::Device>, ) -> Vec<<B as Backend>::Device>
Return all the devices found in the underneath module tree added to the given vector
without duplicates.
§fn to_device(
self,
device: &<B as Backend>::Device,
) -> PositionWiseFeedForward<B>
fn to_device( self, device: &<B as Backend>::Device, ) -> PositionWiseFeedForward<B>
Move the module and all of its sub-modules to the given device. Read more
§fn fork(self, device: &<B as Backend>::Device) -> PositionWiseFeedForward<B>
fn fork(self, device: &<B as Backend>::Device) -> PositionWiseFeedForward<B>
Fork the module and all of its sub-modules to the given device. Read more
§fn devices(&self) -> Vec<<B as Backend>::Device>
fn devices(&self) -> Vec<<B as Backend>::Device>
Return all the devices found in the underneath module tree without duplicates.
§fn save_file<FR, PB>(
self,
file_path: PB,
recorder: &FR,
) -> Result<(), RecorderError>
fn save_file<FR, PB>( self, file_path: PB, recorder: &FR, ) -> Result<(), RecorderError>
Save the module to a file using the provided file recorder. Read more
§fn load_file<FR, PB>(
self,
file_path: PB,
recorder: &FR,
device: &<B as Backend>::Device,
) -> Result<Self, RecorderError>
fn load_file<FR, PB>( self, file_path: PB, recorder: &FR, device: &<B as Backend>::Device, ) -> Result<Self, RecorderError>
Load the module from a file using the provided file recorder. Read more
§fn quantize_weights<C>(self, quantizer: &mut Quantizer<C>) -> Selfwhere
C: Calibration,
fn quantize_weights<C>(self, quantizer: &mut Quantizer<C>) -> Selfwhere
C: Calibration,
Quantize the weights of the module.
§impl<B> ModuleDisplay for PositionWiseFeedForward<B>where
B: Backend,
impl<B> ModuleDisplay for PositionWiseFeedForward<B>where
B: Backend,
§fn custom_settings(&self) -> Option<DisplaySettings>
fn custom_settings(&self) -> Option<DisplaySettings>
Custom display settings for the module. Read more
§fn custom_content(&self, content: Content) -> Option<Content>
fn custom_content(&self, content: Content) -> Option<Content>
Custom attributes for the module. Read more
§fn format(&self, passed_settings: DisplaySettings) -> String
fn format(&self, passed_settings: DisplaySettings) -> String
Formats the module with provided display settings. Read more
§impl<B> ModuleDisplayDefault for PositionWiseFeedForward<B>where
B: Backend,
impl<B> ModuleDisplayDefault for PositionWiseFeedForward<B>where
B: Backend,
Auto Trait Implementations§
impl<B> !Freeze for PositionWiseFeedForward<B>
impl<B> !RefUnwindSafe for PositionWiseFeedForward<B>
impl<B> Send for PositionWiseFeedForward<B>
impl<B> !Sync for PositionWiseFeedForward<B>
impl<B> Unpin for PositionWiseFeedForward<B>where
<B as Backend>::FloatTensorPrimitive: Unpin,
<B as Backend>::QuantizedTensorPrimitive: Unpin,
<B as Backend>::Device: Unpin,
impl<B> UnwindSafe for PositionWiseFeedForward<B>where
<B as Backend>::FloatTensorPrimitive: UnwindSafe,
<B as Backend>::QuantizedTensorPrimitive: UnwindSafe,
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> ToCompactString for Twhere
T: Display,
impl<T> ToCompactString for Twhere
T: Display,
§fn try_to_compact_string(&self) -> Result<CompactString, ToCompactStringError>
fn try_to_compact_string(&self) -> Result<CompactString, ToCompactStringError>
Fallible version of [
ToCompactString::to_compact_string()
] Read more§fn to_compact_string(&self) -> CompactString
fn to_compact_string(&self) -> CompactString
Converts the given value to a [
CompactString
]. Read more