View source on GitHub |
Average pooling layer for 3D inputs (e.g. volumes).
tf.compat.v1.layers.average_pooling3d(
inputs,
pool_size,
strides,
padding='valid',
data_format='channels_last',
name=None
)
Migrate to TF2
This API is a legacy api that is only compatible with eager execution and
tf.function
if you combine it with
tf.compat.v1.keras.utils.track_tf1_style_variables
Please refer to tf.layers model mapping section of the migration guide to learn how to use your TensorFlow v1 model in TF2 with Keras.
The corresponding TensorFlow v2 layer is
tf.keras.layers.AveragePooling3D
.
Structural Mapping to Native TF2
None of the supported arguments have changed name.
Before:
y = tf.compat.v1.layers.average_pooling3d(x, pool_size=2, strides=2)
After:
To migrate code using TF1 functional layers use the Keras Functional API:
x = tf.keras.Input((28, 28, 1))
y = tf.keras.layers.AveragePooling3D(pool_size=2, strides=2)(x)
model = tf.keras.Model(x, y)
Description
Returns | |
---|---|
Output tensor. |
Raises | |
---|---|
ValueError
|
if eager execution is enabled. |