This class implements a layer which performs mean pooling on Height
, Width
, and Depth
dimensions of the input.
The layer has no trainable parameters.
The single input accepts a blob of the following dimensions:
BatchLength * BatchWidth * ListSize
- the number of images in the setHeight
- the images' heightWidth
- the images' widthDepth
- the images' depthChannels
- the number of channels the image format uses
The single output contains a blob of the dimensions:
BatchLength
is equal to the inputBatchLength
BatchWidth
is equal to the inputBatchWidth
ListSize
is equal to the inputListSize
Height
is equal to1
Width
is equal to1
Depth
is equal to1
Channels
is equal to the inputChannels