torch.nn.functional.avg_pool2d#
- torch.nn.functional.avg_pool2d(input, kernel_size, stride=None, padding=0, ceil_mode=False, count_include_pad=True, divisor_override=None) Tensor#
Applies 2D average-pooling operation in regions by step size steps. The number of output features is equal to the number of input planes.
See
AvgPool2dfor details and output shape.- Parameters:
input โ input tensor
kernel_size โ size of the pooling region. Can be a single number, a single-element tuple or a tuple (kH, kW)
stride โ stride of the pooling operation. Can be a single number, a single-element tuple or a tuple (sH, sW). Default:
kernel_sizepadding โ implicit zero paddings on both sides of the input. Can be a single number, a single-element tuple or a tuple (padH, padW). Should be at most half of effective kernel size, that is . Default: 0
ceil_mode โ when True, will use ceil instead of floor in the formula to compute the output shape. Default:
Falsecount_include_pad โ when True, will include the zero-padding in the averaging calculation. Default:
Truedivisor_override โ if specified, it will be used as divisor, otherwise size of the pooling region will be used. Default: None