pub struct AvgPool2d {
pub stride: [usize; 2],
pub kernel_size: [usize; 2],
pub padding: Ignored<PaddingConfig2d>,
pub count_include_pad: bool,
}
Expand description
Applies a 2D avg pooling over input tensors.
Should be created with AvgPool2dConfig.
§Remarks
The zero-padding values will be included in the calculation
of the average. This means that the zeros are counted as
legitimate values, and they contribute to the denominator
when calculating the average. This is equivalent to
torch.nn.AvgPool2d
with count_include_pad=True
.
TODO: Add support for count_include_pad=False
, see
Issue 636
Fields§
§stride: [usize; 2]
Stride of the pooling.
kernel_size: [usize; 2]
Size of the kernel.
padding: Ignored<PaddingConfig2d>
Padding configuration.
count_include_pad: bool
If the padding is counted in the denominator when computing the average.
Implementations§
Trait Implementations§
§impl<B> AutodiffModule<B> for AvgPool2dwhere
B: AutodiffBackend,
impl<B> AutodiffModule<B> for AvgPool2dwhere
B: AutodiffBackend,
§type InnerModule = AvgPool2d
type InnerModule = AvgPool2d
Inner module without auto-differentiation.
§fn valid(&self) -> <AvgPool2d as AutodiffModule<B>>::InnerModule
fn valid(&self) -> <AvgPool2d as AutodiffModule<B>>::InnerModule
Get the same module, but on the inner backend without auto-differentiation.
§impl<B> Module<B> for AvgPool2dwhere
B: Backend,
impl<B> Module<B> for AvgPool2dwhere
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) -> AvgPool2dwhere
M: ModuleMapper<B>,
fn map<M>(self, _mapper: &mut M) -> AvgPool2dwhere
M: ModuleMapper<B>,
Map each tensor parameter in the module with a mapper.
§fn load_record(self, _record: <AvgPool2d as Module<B>>::Record) -> AvgPool2d
fn load_record(self, _record: <AvgPool2d as Module<B>>::Record) -> AvgPool2d
Load the module state from a record.
§fn into_record(self) -> <AvgPool2d as Module<B>>::Record
fn into_record(self) -> <AvgPool2d as Module<B>>::Record
Convert the module into a record containing the state.
§fn to_device(self, _: &<B as Backend>::Device) -> AvgPool2d
fn to_device(self, _: &<B as Backend>::Device) -> AvgPool2d
Move the module and all of its sub-modules to the given device. Read more
§fn fork(self, _: &<B as Backend>::Device) -> AvgPool2d
fn fork(self, _: &<B as Backend>::Device) -> AvgPool2d
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<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 ModuleDisplay for AvgPool2d
impl ModuleDisplay for AvgPool2d
§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
Auto Trait Implementations§
impl Freeze for AvgPool2d
impl RefUnwindSafe for AvgPool2d
impl Send for AvgPool2d
impl Sync for AvgPool2d
impl Unpin for AvgPool2d
impl UnwindSafe for AvgPool2d
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