public static class
FractionalMaxPoolGrad.Options
Optional attributes for FractionalMaxPoolGrad
Public Methods
FractionalMaxPoolGrad.Options |
overlapping(Boolean overlapping)
|
Inherited Methods
boolean |
equals(Object arg0)
|
final Class<?> |
getClass()
|
int |
hashCode()
|
final void |
notify()
|
final void |
notifyAll()
|
String |
toString()
|
final void |
wait(long arg0, int arg1)
|
final void |
wait(long arg0)
|
final void |
wait()
|
Public Methods
public FractionalMaxPoolGrad.Options overlapping (Boolean overlapping)
Parameters
overlapping | When set to True, it means when pooling, the values at the boundary
of adjacent pooling cells are used by both cells. For example:
`index 0 1 2 3 4` `value 20 5 16 3 7` If the pooling sequence is [0, 2, 4], then 16, at index 2 will be used twice. The result would be [20, 16] for fractional max pooling. |
---|