Rate this Page

LPPool2d#

class torch.nn.LPPool2d(norm_type, kernel_size, stride=None, ceil_mode=False)[source]#

Applies a 2D power-average pooling over an input signal composed of several input planes.

On each window, the function computed is:

f(X)=pxXxp
  • At p = , one gets Max Pooling

  • At p = 1, one gets Sum Pooling (which is proportional to average pooling)

The parameters kernel_size, stride can either be:

  • a single int – in which case the same value is used for the height and width dimension

  • a tuple of two ints – in which case, the first int is used for the height dimension, and the second int for the width dimension

Note

If the sum to the power of p is zero, the gradient of this function is not defined. This implementation will set the gradient to zero in this case.

Parameters
  • kernel_size (Union[int, tuple[int, int]]) – the size of the window

  • stride (Union[int, tuple[int, int]]) – the stride of the window. Default value is kernel_size

  • ceil_mode (bool) – when True, will use ceil instead of floor to compute the output shape

Note

When ceil_mode is True, sliding windows may go off-bounds if they start within the left padding or the input. Sliding windows that would start in the right padded region are ignored.

Shape:
  • Input: (N,C,Hin,Win) or (C,Hin,Win).

  • Output: (N,C,Hout,Wout) or (C,Hout,Wout), where

    Hout=stride[0]Hinkernel_size[0]+1
    Wout=stride[1]Winkernel_size[1]+1

Examples:

>>> # power-2 pool of square window of size=3, stride=2
>>> m = nn.LPPool2d(2, 3, stride=2)
>>> # pool of non-square window of power 1.2
>>> m = nn.LPPool2d(1.2, (3, 2), stride=(2, 1))
>>> input = torch.randn(20, 16, 50, 32)
>>> output = m(input)
forward(input)[source]#

Runs the forward pass.

Return type

Tensor

Docs

Access comprehensive developer documentation for PyTorch

View Docs

Tutorials

Get in-depth tutorials for beginners and advanced developers

View Tutorials

Resources

Find development resources and get your questions answered

View Resources
Morty Proxy This is a proxified and sanitized view of the page, visit original site.