Layer factory function to create a global max-pooling layer.
GlobalMaxPooling(name = "")
| name | string (optional) the name of the Function instance in the network |
|---|
The global max-pooling operation computes the element-wise maximum over all items on an N-dimensional grid, such as an image.
This operation is the same as applying reduce_max() to all grid dimensions.