MaxPool3D
This node reduces the input data by sliding a three-dimensional window over it and taking the maximum value for each window position.
Kernel size: The size of the window.
Stride: The number of places to move the window forward after each computation.
Dilation: Gap between tiles in the sliding window.
Padding: Number of elements with value negative infinity to add to each side of the input, before performing the operation.
Ceil-mode: If true, sliding windows will be allowed to go off bounds.