![]() |
Class Flatten
Flattens an input tensor while preserving the batch axis (axis 0).
Aliases:
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, ..., channels)
whilechannels_first
corresponds to inputs with shape(batch, channels, ...)
.
Examples:
x = tf.compat.v1.placeholder(shape=(None, 4, 4), dtype='float32')
y = Flatten()(x)
# now `y` has shape `(None, 16)`
x = tf.compat.v1.placeholder(shape=(None, 3, None), dtype='float32')
y = Flatten()(x)
# now `y` has shape `(None, None)`
__init__
__init__(
data_format=None,
**kwargs
)
Properties
graph
DEPRECATED FUNCTION