adaptive_max_pool3d#

ivy.adaptive_max_pool3d(input, output_size)[source]#

Apply a 3D adaptive maximum pooling over an input signal composed of several input planes.

Parameters:
  • input (Union[Array, NativeArray]) – Input array. Must have shape (N, C, D_in, H_in, W_in) or (C, D_in, H_in, W_in) where N is the batch dimension, C is the feature dimension, and D_in, H_in, and W_in are the 3 spatial dimensions.

  • output_size (Union[Sequence[int], int]) – Spatial output size.

Returns:

The result of the pooling operation. Will have shape (N, C, D_out, H_out, W_out) or (C, D_out, H_out, W_out), where D_out, H_out, W_out = output_size

Array.adaptive_max_pool3d(self, output_size)[source]#
Return type:

Array

Container.adaptive_max_pool3d(self, output_size, *, key_chains=None, to_apply=True, prune_unapplied=False, map_sequences=False)[source]#
Return type:

Container