![]() |
Class GlobalAveragePooling2D
Global average pooling operation for spatial data.
Aliases:
- Class
tf.compat.v1.keras.layers.GlobalAveragePooling2D
- Class
tf.compat.v1.keras.layers.GlobalAvgPool2D
- Class
tf.compat.v2.keras.layers.GlobalAveragePooling2D
- Class
tf.compat.v2.keras.layers.GlobalAvgPool2D
- Class
tf.keras.layers.GlobalAvgPool2D
Arguments:
data_format
: A string, one ofchannels_last
(default) orchannels_first
. The ordering of the dimensions in the inputs.channels_last
corresponds to inputs with shape(batch, height, width, channels)
whilechannels_first
corresponds to inputs with shape(batch, channels, height, width)
. It defaults to theimage_data_format
value found in your Keras config file at~/.keras/keras.json
. If you never set it, then it will be "channels_last".
Input shape:
- If
data_format='channels_last'
: 4D tensor with shape(batch_size, rows, cols, channels)
. - If
data_format='channels_first'
: 4D tensor with shape(batch_size, channels, rows, cols)
.
Output shape:
2D tensor with shape (batch_size, channels)
.
__init__
__init__(
data_format=None,
**kwargs
)