Struct GLU
pub struct GLU { /* private fields */ }Expand description
Applies the gated linear unit function.
See also glu
Implementations§
§impl GLU
impl GLU
pub fn forward<B, const D: usize>(&self, input: Tensor<B, D>) -> Tensor<B, D>where
B: Backend,
pub fn forward<B, const D: usize>(&self, input: Tensor<B, D>) -> Tensor<B, D>where
B: Backend,
Applies the gated linear unit function.
GLU(a,b)=a⊗σ(b) where a is the first half of the input matrices and b is the second half.
Note:
- The size of the input tensor along
dimmust be divisible by 2.
§Arguments
tensor- The input tensor.
§Returns
- A tensor with the same shape as the input, except the size along
dimis halved.
Trait Implementations§
§impl<B> AutodiffModule<B> for GLUwhere
B: AutodiffBackend,
impl<B> AutodiffModule<B> for GLUwhere
B: AutodiffBackend,
§type InnerModule = GLU
type InnerModule = GLU
Inner module without auto-differentiation.
§fn valid(&self) -> <GLU as AutodiffModule<B>>::InnerModule
fn valid(&self) -> <GLU as AutodiffModule<B>>::InnerModule
Get the same module, but on the inner backend without auto-differentiation.
§impl<B> Module<B> for GLUwhere
B: Backend,
impl<B> Module<B> for GLUwhere
B: Backend,
§type Record = ConstantRecord
type Record = ConstantRecord
Type to save and load the module.
§fn visit<V>(&self, _visitor: &mut V)where
V: ModuleVisitor<B>,
fn visit<V>(&self, _visitor: &mut V)where
V: ModuleVisitor<B>,
Visit each tensor parameter in the module with a visitor.
§fn map<M>(self, _mapper: &mut M) -> GLUwhere
M: ModuleMapper<B>,
fn map<M>(self, _mapper: &mut M) -> GLUwhere
M: ModuleMapper<B>,
Map each tensor parameter in the module with a mapper.
§fn load_record(self, _record: <GLU as Module<B>>::Record) -> GLU
fn load_record(self, _record: <GLU as Module<B>>::Record) -> GLU
Load the module state from a record.
§fn into_record(self) -> <GLU as Module<B>>::Record
fn into_record(self) -> <GLU as Module<B>>::Record
Convert the module into a record containing the state.
§fn to_device(self, _: &<B as Backend>::Device) -> GLU
fn to_device(self, _: &<B as Backend>::Device) -> GLU
Move the module and all of its sub-modules to the given device. Read more
§fn fork(self, _: &<B as Backend>::Device) -> GLU
fn fork(self, _: &<B as Backend>::Device) -> GLU
Fork the module and all of its sub-modules to the given device. Read more
§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 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 num_params(&self) -> usize
fn num_params(&self) -> usize
Get the number of parameters the module has, including all of its sub-modules.
§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(self, quantizer: &mut Quantizer) -> Self
fn quantize_weights(self, quantizer: &mut Quantizer) -> Self
Quantize the weights of the module.
§impl ModuleDisplay for GLU
impl ModuleDisplay for GLU
§fn format(&self, passed_settings: DisplaySettings) -> String
fn format(&self, passed_settings: DisplaySettings) -> String
Formats the module with provided display settings. Read more
§fn custom_settings(&self) -> Option<DisplaySettings>
fn custom_settings(&self) -> Option<DisplaySettings>
Custom display settings for the module. Read more
Auto Trait Implementations§
impl Freeze for GLU
impl RefUnwindSafe for GLU
impl Send for GLU
impl Sync for GLU
impl Unpin for GLU
impl UnwindSafe for GLU
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§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