Max pooling operation for 3D data.
Input shape
dataFormat === channelsLast
[batchSize, depths, rows, cols, channels]
dataFormat === channelsFirst
[batchSize, channels, depths, rows, cols]
Output shape
dataFormat=channelsLast
[batchSize, pooledDepths, pooledRows, pooledCols, channels]
dataFormat=channelsFirst
[batchSize, channels, pooledDepths, pooledRows, pooledCols]
Generated using TypeDoc
Max pooling operation for 3D data.
Input shape
dataFormat === channelsLast
: 5D tensor with shape:[batchSize, depths, rows, cols, channels]
dataFormat === channelsFirst
: 5D tensor with shape:[batchSize, channels, depths, rows, cols]
Output shape
dataFormat=channelsLast
: 5D tensor with shape:[batchSize, pooledDepths, pooledRows, pooledCols, channels]
dataFormat=channelsFirst
: 5D tensor with shape:[batchSize, channels, pooledDepths, pooledRows, pooledCols]