tf.keras.layers.Flatten | TensorFlow v2.0.0 (original) (raw)
tf.keras.layers.Flatten
Stay organized with collections Save and categorize content based on your preferences.
Flattens the input. Does not affect the batch size.
Inherits From: Layer
View aliases
Compat aliases for migration
SeeMigration guide for more details.
tf.compat.v1.keras.layers.Flatten
tf.keras.layers.Flatten(
data_format=None, **kwargs
)
If inputs are shaped (batch,)
without a channel dimension, then flattening adds an extra channel dimension and output shapes are (batch, 1)
.
Arguments | |
---|---|
data_format | A string, one of channels_last (default) or channels_first. The ordering of the dimensions in the inputs.channels_last corresponds to inputs with shape(batch, ..., channels) while channels_first corresponds to inputs with shape (batch, channels, ...). It defaults to the image_data_format value found in your Keras config file at ~/.keras/keras.json. If you never set it, then it will be "channels_last". |
Example:
model = Sequential()
model.add(Convolution2D(64, 3, 3,
border_mode='same',
input_shape=(3, 32, 32)))
# now: model.output_shape == (None, 64, 32, 32)
model.add(Flatten())
# now: model.output_shape == (None, 65536)