tf.keras.backend.pool2d

View source on GitHub

2D Pooling.

Arguments
x Tensor or variable.
pool_size tuple of 2 integers.
strides tuple of 2 integers.
padding string, "same" or "valid".
data_format string, "channels_last" or "channels_first".
pool_mode string, "max" or "avg".
Returns
A tensor, result of 2D pooling.
Raises
ValueError if data_format is neither "channels_last" or "channels_first".
ValueError if pool_size is not a tuple of 2 integers.
ValueError if strides is not a tuple of 2 integers.
ValueError if pool_mode is neither "max" or "avg".

© 2020 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 3.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/versions/r2.3/api_docs/python/tf/keras/backend/pool2d