pub struct LocalResponseNorm { /* private fields */ }Expand description
Applies Local Response Normalization as described in ImageNet Classification with Deep Convolutional Neural Networks.
Y = X / (k + (alpha / size) * sum(X^2))^beta
Where the sum is computed over a sliding window of size channels.
For odd size, the window is centered on each channel position.
For even size, the window uses asymmetric padding and includes the current
channel plus one extra channel on the positive side.
Should be created using LocalResponseNormConfig.
Implementations§
Trait Implementations§
Source§impl<B> AutodiffModule<B> for LocalResponseNormwhere
B: AutodiffBackend,
impl<B> AutodiffModule<B> for LocalResponseNormwhere
B: AutodiffBackend,
Source§type InnerModule = LocalResponseNorm
type InnerModule = LocalResponseNorm
Inner module without auto-differentiation.
Source§fn valid(&self) -> <LocalResponseNorm as AutodiffModule<B>>::InnerModule
fn valid(&self) -> <LocalResponseNorm as AutodiffModule<B>>::InnerModule
Returns the same module, but on the inner backend without auto-differentiation.
Source§fn from_inner(
module: <LocalResponseNorm as AutodiffModule<B>>::InnerModule,
) -> LocalResponseNorm
fn from_inner( module: <LocalResponseNorm as AutodiffModule<B>>::InnerModule, ) -> LocalResponseNorm
Wraps an inner module back into an auto-diff module.
Source§impl Clone for LocalResponseNorm
impl Clone for LocalResponseNorm
Source§fn clone(&self) -> LocalResponseNorm
fn clone(&self) -> LocalResponseNorm
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LocalResponseNorm
impl Debug for LocalResponseNorm
Source§impl Display for LocalResponseNorm
impl Display for LocalResponseNorm
Source§impl<B> Module<B> for LocalResponseNormwhere
B: Backend,
impl<B> Module<B> for LocalResponseNormwhere
B: Backend,
Source§type Record = EmptyRecord
type Record = EmptyRecord
Type to save and load the module.
Source§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.
Source§fn map<M>(self, _mapper: &mut M) -> LocalResponseNormwhere
M: ModuleMapper<B>,
fn map<M>(self, _mapper: &mut M) -> LocalResponseNormwhere
M: ModuleMapper<B>,
Map each tensor parameter in the module with a mapper.
Source§fn load_record(
self,
_record: <LocalResponseNorm as Module<B>>::Record,
) -> LocalResponseNorm
fn load_record( self, _record: <LocalResponseNorm as Module<B>>::Record, ) -> LocalResponseNorm
Load the module state from a record.
Source§fn into_record(self) -> <LocalResponseNorm as Module<B>>::Record
fn into_record(self) -> <LocalResponseNorm as Module<B>>::Record
Convert the module into a record containing the state.
Source§fn to_device(self, _: &<B as BackendTypes>::Device) -> LocalResponseNorm
fn to_device(self, _: &<B as BackendTypes>::Device) -> LocalResponseNorm
Move the module and all of its sub-modules to the given device. Read more
Source§fn fork(self, _: &<B as BackendTypes>::Device) -> LocalResponseNorm
fn fork(self, _: &<B as BackendTypes>::Device) -> LocalResponseNorm
Fork the module and all of its sub-modules to the given device. Read more
Source§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.
Source§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.
Source§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
Source§fn num_params(&self) -> usize
fn num_params(&self) -> usize
Get the number of parameters the module has, including all of its sub-modules.
Source§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
Source§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
Source§fn quantize_weights(self, quantizer: &mut Quantizer) -> Self
fn quantize_weights(self, quantizer: &mut Quantizer) -> Self
Quantize the weights of the module.
Source§impl ModuleDisplay for LocalResponseNorm
impl ModuleDisplay for LocalResponseNorm
Source§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 LocalResponseNorm
impl RefUnwindSafe for LocalResponseNorm
impl Send for LocalResponseNorm
impl Sync for LocalResponseNorm
impl Unpin for LocalResponseNorm
impl UnsafeUnpin for LocalResponseNorm
impl UnwindSafe for LocalResponseNorm
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