Enum Activation
#[non_exhaustive]pub enum Activation<B>where
B: Backend,{
Gelu(Gelu),
PRelu(PRelu<B>),
Relu(Relu),
LeakyRelu(LeakyRelu),
SwiGlu(SwiGlu<B>),
Sigmoid(Sigmoid),
Tanh(Tanh),
HardSigmoid(HardSigmoid),
}Expand description
Activation Layer Wrapper.
Provides support for many in-built burn::nn activations.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Gelu(Gelu)
Gelu activation layer.
PRelu(PRelu<B>)
PRelu activation layer.
Relu(Relu)
Relu activation layer.
LeakyRelu(LeakyRelu)
LeakyRelu activation layer.
SwiGlu(SwiGlu<B>)
SwiGlu activation layer.
Sigmoid(Sigmoid)
Sigmoid activation layer.
Tanh(Tanh)
Tanh activation layer.
HardSigmoid(HardSigmoid)
HardSigmoid activation layer.
Implementations§
Trait Implementations§
§impl<B> AutodiffModule<B> for Activation<B>
impl<B> AutodiffModule<B> for Activation<B>
§type InnerModule = Activation<<B as AutodiffBackend>::InnerBackend>
type InnerModule = Activation<<B as AutodiffBackend>::InnerBackend>
Inner module without auto-differentiation.
§fn valid(&self) -> <Activation<B> as AutodiffModule<B>>::InnerModule
fn valid(&self) -> <Activation<B> as AutodiffModule<B>>::InnerModule
Get the same module, but on the inner backend without auto-differentiation.
§impl<B> Clone for Activation<B>where
B: Backend,
impl<B> Clone for Activation<B>where
B: Backend,
§fn clone(&self) -> Activation<B>
fn clone(&self) -> Activation<B>
Returns a duplicate 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 Activation<B>
impl<B> Debug for Activation<B>
§impl<B> Display for Activation<B>where
B: Backend,
impl<B> Display for Activation<B>where
B: Backend,
§impl<B> From<Gelu> for Activation<B>where
B: Backend,
impl<B> From<Gelu> for Activation<B>where
B: Backend,
§fn from(layer: Gelu) -> Activation<B>
fn from(layer: Gelu) -> Activation<B>
Converts to this type from the input type.
§impl<B> From<HardSigmoid> for Activation<B>where
B: Backend,
impl<B> From<HardSigmoid> for Activation<B>where
B: Backend,
§fn from(layer: HardSigmoid) -> Activation<B>
fn from(layer: HardSigmoid) -> Activation<B>
Converts to this type from the input type.
§impl<B> From<LeakyRelu> for Activation<B>where
B: Backend,
impl<B> From<LeakyRelu> for Activation<B>where
B: Backend,
§fn from(layer: LeakyRelu) -> Activation<B>
fn from(layer: LeakyRelu) -> Activation<B>
Converts to this type from the input type.
§impl<B> From<PRelu<B>> for Activation<B>where
B: Backend,
impl<B> From<PRelu<B>> for Activation<B>where
B: Backend,
§fn from(layer: PRelu<B>) -> Activation<B>
fn from(layer: PRelu<B>) -> Activation<B>
Converts to this type from the input type.
§impl<B> From<Relu> for Activation<B>where
B: Backend,
impl<B> From<Relu> for Activation<B>where
B: Backend,
§fn from(layer: Relu) -> Activation<B>
fn from(layer: Relu) -> Activation<B>
Converts to this type from the input type.
§impl<B> From<Sigmoid> for Activation<B>where
B: Backend,
impl<B> From<Sigmoid> for Activation<B>where
B: Backend,
§fn from(layer: Sigmoid) -> Activation<B>
fn from(layer: Sigmoid) -> Activation<B>
Converts to this type from the input type.
§impl<B> From<SwiGlu<B>> for Activation<B>where
B: Backend,
impl<B> From<SwiGlu<B>> for Activation<B>where
B: Backend,
§fn from(layer: SwiGlu<B>) -> Activation<B>
fn from(layer: SwiGlu<B>) -> Activation<B>
Converts to this type from the input type.
§impl<B> From<Tanh> for Activation<B>where
B: Backend,
impl<B> From<Tanh> for Activation<B>where
B: Backend,
§fn from(layer: Tanh) -> Activation<B>
fn from(layer: Tanh) -> Activation<B>
Converts to this type from the input type.
§impl<B> Module<B> for Activation<B>where
B: Backend,
impl<B> Module<B> for Activation<B>where
B: Backend,
§type Record = ActivationRecord<B>
type Record = ActivationRecord<B>
Type to save and load the module.
§fn load_record(
self,
record: <Activation<B> as Module<B>>::Record,
) -> Activation<B>
fn load_record( self, record: <Activation<B> as Module<B>>::Record, ) -> Activation<B>
Load the module state from a record.
§fn into_record(self) -> <Activation<B> as Module<B>>::Record
fn into_record(self) -> <Activation<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) -> Activation<B>where
Mapper: ModuleMapper<B>,
fn map<Mapper>(self, mapper: &mut Mapper) -> Activation<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) -> Activation<B>
fn to_device(self, device: &<B as Backend>::Device) -> Activation<B>
Move the module and all of its sub-modules to the given device. Read more
§fn fork(self, device: &<B as Backend>::Device) -> Activation<B>
fn fork(self, device: &<B as Backend>::Device) -> Activation<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(self, quantizer: &mut Quantizer) -> Self
fn quantize_weights(self, quantizer: &mut Quantizer) -> Self
Quantize the weights of the module.
§impl<B> ModuleDisplay for Activation<B>where
B: Backend,
impl<B> ModuleDisplay for Activation<B>where
B: Backend,
§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
§impl<B> ModuleDisplayDefault for Activation<B>where
B: Backend,
impl<B> ModuleDisplayDefault for Activation<B>where
B: Backend,
Auto Trait Implementations§
impl<B> !Freeze for Activation<B>
impl<B> !RefUnwindSafe for Activation<B>
impl<B> Send for Activation<B>
impl<B> !Sync for Activation<B>
impl<B> Unpin for Activation<B>where
<B as Backend>::FloatTensorPrimitive: Unpin,
<B as Backend>::QuantizedTensorPrimitive: Unpin,
<B as Backend>::Device: Unpin,
impl<B> !UnwindSafe for Activation<B>
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