pub struct MaxPool1d {
pub stride: usize,
pub kernel_size: usize,
pub padding: Ignored<PaddingConfig1d>,
pub dilation: usize,
pub ceil_mode: bool,
}Expand description
Applies a 1D max pooling over input tensors.
Should be created with MaxPool1dConfig.
Fields§
§stride: usizeThe stride.
kernel_size: usizeThe size of the kernel.
padding: Ignored<PaddingConfig1d>The padding configuration.
dilation: usizeThe dilation.
ceil_mode: boolIf true, use ceiling instead of floor for output size calculation.
Implementations§
Trait Implementations§
Source§impl<B> AutodiffModule<B> for MaxPool1dwhere
B: AutodiffBackend,
impl<B> AutodiffModule<B> for MaxPool1dwhere
B: AutodiffBackend,
Source§type InnerModule = MaxPool1d
type InnerModule = MaxPool1d
Inner module without auto-differentiation.
Source§fn valid(&self) -> <MaxPool1d as AutodiffModule<B>>::InnerModule
fn valid(&self) -> <MaxPool1d as AutodiffModule<B>>::InnerModule
Get the same module, but on the inner backend without auto-differentiation.
Source§impl<B> Module<B> for MaxPool1dwhere
B: Backend,
impl<B> Module<B> for MaxPool1dwhere
B: Backend,
Source§type Record = ConstantRecord
type Record = ConstantRecord
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) -> MaxPool1dwhere
M: ModuleMapper<B>,
fn map<M>(self, _mapper: &mut M) -> MaxPool1dwhere
M: ModuleMapper<B>,
Map each tensor parameter in the module with a mapper.
Source§fn load_record(self, _record: <MaxPool1d as Module<B>>::Record) -> MaxPool1d
fn load_record(self, _record: <MaxPool1d as Module<B>>::Record) -> MaxPool1d
Load the module state from a record.
Source§fn into_record(self) -> <MaxPool1d as Module<B>>::Record
fn into_record(self) -> <MaxPool1d as Module<B>>::Record
Convert the module into a record containing the state.
Source§fn to_device(self, _: &<B as Backend>::Device) -> MaxPool1d
fn to_device(self, _: &<B as Backend>::Device) -> MaxPool1d
Move the module and all of its sub-modules to the given device. Read more
Source§fn fork(self, _: &<B as Backend>::Device) -> MaxPool1d
fn fork(self, _: &<B as Backend>::Device) -> MaxPool1d
Fork the module and all of its sub-modules to the given device. Read more
Source§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.
Source§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.
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 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
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 MaxPool1d
impl ModuleDisplay for MaxPool1d
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 MaxPool1d
impl RefUnwindSafe for MaxPool1d
impl Send for MaxPool1d
impl Sync for MaxPool1d
impl Unpin for MaxPool1d
impl UnwindSafe for MaxPool1d
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