Max pooling 1D layer
This card is a wrapper of this Keras class.
Note: the backend for building and training neural networks is based on Keras. The documentation of this card is a variant of the documentation of its corresponding class.
Inputs
-
Pool size — Integer
Size of the pooling window.
-
Strides — Integer
Specifies how much the pooling window moves for each pooling step. If not specified, it will default to Pool size.
-
Padding — String
The padding algorithm.
-
Data format — String
The ordering of the dimensions in the inputs.
-
Input — NeuralNetworkTensor
Input of this layer.
Outputs
-
Layer instance — NeuralNetworkLayer
Instance of this layer. It can be wrapped using a Bidirectional or a TimeDistributed wrapper.
-
Output — NeuralNetworkTensor
Output of this layer.