nnf_avg_pool1d {torch} | R Documentation |
Avg_pool1d
Description
Applies a 1D average pooling over an input signal composed of several input planes.
Usage
nnf_avg_pool1d(
input,
kernel_size,
stride = NULL,
padding = 0,
ceil_mode = FALSE,
count_include_pad = TRUE
)
Arguments
input |
input tensor of shape (minibatch , in_channels , iW) |
kernel_size |
the size of the window. Can be a single number or a
tuple |
stride |
the stride of the window. Can be a single number or a tuple
|
padding |
implicit zero paddings on both sides of the input. Can be a
single number or a tuple |
ceil_mode |
when True, will use |
count_include_pad |
when True, will include the zero-padding in the
averaging calculation. Default: |
[Package torch version 0.13.0 Index]