Input data to the pooling operator.
Only used for AvgPool, specify whether to count padding elements for averagecalculation. For example, with a 5*5 kernel on a 3*3 corner of a image,the sum of the 9 valid elements will be divided by 25 if this is set to true,or it will be divided by 9 if this is set to false. Defaults to true.
Turn off cudnn pooling and use MXNet pooling operator.
Ignore kernel size, do global pooling based on current input feature map.
Pooling kernel size: (y, x) or (d, y, x)
Set layout for input and output. Empty for default layout: NCW for 1d, NCHW for 2d and NCDHW for 3d.
Value of p for Lp pooling, can be 1 or 2, required for Lp Pooling.
Pad for pooling: (y, x) or (d, y, x). Defaults to no padding.
Pooling type to be applied.
Pooling convention to be applied.
Stride: for pooling (y, x) or (d, y, x). Defaults to 1 for each dimension.
This Param Object is specifically used for Pooling