The input tensor, of rank 5 or rank 4 of shape
[batch, depth, height, width, inChannels]
.
The filter size:
[filterDepth, filterHeight, filterWidth]
.
If filterSize
is a single number,
then filterDepth == filterHeight == filterWidth
.
The strides of the pooling:
[strideDepth, strideHeight, strideWidth]
.
If strides
is a single number,
then strideDepth == strideHeight == strideWidth
.
The type of padding algorithm.
same
and stride 1: output will be of same size as input,
regardless of filter size.valid
: output will be smaller than input if filter is larger
than 1*1x1.Optional
dimRoundingMode: "floor" | "round" | "ceil"A string from: 'ceil', 'round', 'floor'. If none is provided, it will default to truncate.
Optional
dataFormat: "NDHWC" | "NCDHW"An optional string from: "NDHWC", "NCDHW". Defaults to "NDHWC". Specify the data format of the input and output data. With the default format "NDHWC", the data is stored in the order of: [batch, depth, height, width, channels]. Only "NDHWC" is currently supported.
Generated using TypeDoc
Computes the 3D max pooling.