Enum Activation
#[non_exhaustive]pub enum Activation<B>where
B: Backend,{
Show 18 variants
Gelu(Gelu),
PRelu(PRelu<B>),
Relu(Relu),
LeakyRelu(LeakyRelu),
SwiGlu(SwiGlu<B>),
Selu(Selu),
Sigmoid(Sigmoid),
Tanh(Tanh),
HardSigmoid(HardSigmoid),
HardSwish(HardSwish),
Softplus(Softplus),
Softsign(Softsign),
Elu(Elu),
Celu(Celu),
ThresholdedRelu(ThresholdedRelu),
HardShrink(HardShrink),
SoftShrink(SoftShrink),
Shrink(Shrink),
}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.
Selu(Selu)
Selu activation layer.
Sigmoid(Sigmoid)
Sigmoid activation layer.
Tanh(Tanh)
Tanh activation layer.
HardSigmoid(HardSigmoid)
HardSigmoid activation layer.
HardSwish(HardSwish)
HardSwish activation layer.
Softplus(Softplus)
Softplus activation layer.
Softsign(Softsign)
Softsign activation layer.
Elu(Elu)
Elu activation layer.
Celu(Celu)
Celu activation layer.
ThresholdedRelu(ThresholdedRelu)
ThresholdedRelu activation layer.
HardShrink(HardShrink)
HardShrink activation layer.
SoftShrink(SoftShrink)
SoftShrink activation layer.
Shrink(Shrink)
Shrink 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
Returns the same module, but on the inner backend without auto-differentiation.
§fn from_inner(
module: <Activation<B> as AutodiffModule<B>>::InnerModule,
) -> Activation<B>
fn from_inner( module: <Activation<B> as AutodiffModule<B>>::InnerModule, ) -> Activation<B>
Wraps an inner module back into an auto-diff module.
§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<Celu> for Activation<B>where
B: Backend,
impl<B> From<Celu> for Activation<B>where
B: Backend,
§fn from(layer: Celu) -> Activation<B>
fn from(layer: Celu) -> Activation<B>
Converts to this type from the input type.
§impl<B> From<Elu> for Activation<B>where
B: Backend,
impl<B> From<Elu> for Activation<B>where
B: Backend,
§fn from(layer: Elu) -> Activation<B>
fn from(layer: Elu) -> Activation<B>
Converts to this type from the input type.
§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<HardShrink> for Activation<B>where
B: Backend,
impl<B> From<HardShrink> for Activation<B>where
B: Backend,
§fn from(layer: HardShrink) -> Activation<B>
fn from(layer: HardShrink) -> 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<HardSwish> for Activation<B>where
B: Backend,
impl<B> From<HardSwish> for Activation<B>where
B: Backend,
§fn from(layer: HardSwish) -> Activation<B>
fn from(layer: HardSwish) -> 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<Selu> for Activation<B>where
B: Backend,
impl<B> From<Selu> for Activation<B>where
B: Backend,
§fn from(layer: Selu) -> Activation<B>
fn from(layer: Selu) -> Activation<B>
Converts to this type from the input type.
§impl<B> From<Shrink> for Activation<B>where
B: Backend,
impl<B> From<Shrink> for Activation<B>where
B: Backend,
§fn from(layer: Shrink) -> Activation<B>
fn from(layer: Shrink) -> 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<SoftShrink> for Activation<B>where
B: Backend,
impl<B> From<SoftShrink> for Activation<B>where
B: Backend,
§fn from(layer: SoftShrink) -> Activation<B>
fn from(layer: SoftShrink) -> Activation<B>
Converts to this type from the input type.
§impl<B> From<Softplus> for Activation<B>where
B: Backend,
impl<B> From<Softplus> for Activation<B>where
B: Backend,
§fn from(layer: Softplus) -> Activation<B>
fn from(layer: Softplus) -> Activation<B>
Converts to this type from the input type.
§impl<B> From<Softsign> for Activation<B>where
B: Backend,
impl<B> From<Softsign> for Activation<B>where
B: Backend,
§fn from(layer: Softsign) -> Activation<B>
fn from(layer: Softsign) -> 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> From<ThresholdedRelu> for Activation<B>where
B: Backend,
impl<B> From<ThresholdedRelu> for Activation<B>where
B: Backend,
§fn from(layer: ThresholdedRelu) -> Activation<B>
fn from(layer: ThresholdedRelu) -> Activation<B>
Converts to this type from the input type.
§impl<B> HasAutodiffModule<B> for Activation<<B as AutodiffBackend>::InnerBackend>
impl<B> HasAutodiffModule<B> for Activation<<B as AutodiffBackend>::InnerBackend>
§type TrainModule = Activation<B>
type TrainModule = Activation<B>
The module with auto-differentiation.
§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 BackendTypes>::Device>,
) -> Vec<<B as BackendTypes>::Device>
fn collect_devices( &self, devices: Vec<<B as BackendTypes>::Device>, ) -> Vec<<B as BackendTypes>::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 BackendTypes>::Device) -> Activation<B>
fn to_device(self, device: &<B as BackendTypes>::Device) -> Activation<B>
Move the module and all of its sub-modules to the given device. Read more
§fn fork(self, device: &<B as BackendTypes>::Device) -> Activation<B>
fn fork(self, device: &<B as BackendTypes>::Device) -> Activation<B>
Fork the module and all of its sub-modules to the given device. Read more
§fn devices(&self) -> Vec<<B as BackendTypes>::Device>
fn devices(&self) -> Vec<<B as BackendTypes>::Device>
Return all the devices found in the underneath module tree without duplicates.
§fn train<AB>(self) -> Self::TrainModulewhere
AB: AutodiffBackend<InnerBackend = B>,
Self: HasAutodiffModule<AB>,
fn train<AB>(self) -> Self::TrainModulewhere
AB: AutodiffBackend<InnerBackend = B>,
Self: HasAutodiffModule<AB>,
Move the module and all of its sub-modules to the autodiff backend. Read more
§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 BackendTypes>::Device,
) -> Result<Self, RecorderError>
fn load_file<FR, PB>( self, file_path: PB, recorder: &FR, device: &<B as BackendTypes>::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 BackendTypes>::FloatTensorPrimitive: Unpin,
<B as BackendTypes>::QuantizedTensorPrimitive: Unpin,
<B as BackendTypes>::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
§impl<C> CloneExpand for Cwhere
C: Clone,
impl<C> CloneExpand for Cwhere
C: Clone,
fn __expand_clone_method(&self, _scope: &mut Scope) -> C
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§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