mindspore.nn.PixelUnshuffle

class mindspore.nn.PixelUnshuffle(downscale_factor)[source]

Applies a pixelunshuffle operation over an input signal composed of several input planes. For more details, refer to Real-Time Single Image and Video Super-Resolution Using an Efficient Sub-Pixel Convolutional Neural Network .

Typically, the input is of shape \((*, C, H \times r, W \times r)\) , and the output is of shape \((*, C \times r^2, H, W)\) , where r is a downscale factor and * is zero or more batch dimensions.

Parameters

downscale_factor (int) – factor to decrease spatial resolution by, and is a positive integer.

Inputs:
  • x (Tensor) - Tensor of shape \((*, C, H \times r, W \times r)\) . The dimension of x is larger than 2, and the length of second to last dimension or last dimension can be divisible by downscale_factor .

Outputs:
  • output (Tensor) - Tensor of shape \((*, C \times r^2, H, W)\) .

Raises
  • ValueError – If downscale_factor is not a positive integer.

  • ValueError – If the length of second to last dimension or last dimension is not divisible by downscale_factor .

  • TypeError – If the dimension of x is less than 3.

Supported Platforms:

Ascend GPU CPU

Examples

>>> pixel_unshuffle = nn.PixelUnshuffle(3)
>>> input_x = np.arange(12 * 12).reshape((1, 1, 12, 12))
>>> input_x = mindspore.Tensor(input_x, mindspore.dtype.int32)
>>> output = pixel_unshuffle(input_x)
>>> print(output.shape)
(1, 9, 4, 4)