On this page
tf.keras.layers.Flatten
Flattens the input. Does not affect the batch size.
tf.keras.layers.Flatten(
    data_format=None, **kwargs
)
Note: If inputs are shaped(batch,)without a feature axis, then flattening adds an extra channel dimension and output shape is(batch, 1).
| Arguments | |
|---|---|
| data_format | A string, one of channels_last(default) orchannels_first. The ordering of the dimensions in the inputs.channels_lastcorresponds to inputs with shape(batch, ..., channels)whilechannels_firstcorresponds to inputs with shape(batch, channels, ...). It defaults to theimage_data_formatvalue found in your Keras config file at~/.keras/keras.json. If you never set it, then it will be "channels_last". | 
Example:
model = tf.keras.Sequential()
model.add(tf.keras.layers.Conv2D(64, 3, 3, input_shape=(3, 32, 32)))
model.output_shape
(None, 1, 10, 64)
model.add(Flatten())
model.output_shape
(None, 640)
© 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.4/api_docs/python/tf/keras/layers/Flatten