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, height, width, channels) while channels_first corresponds to
inputs with shape (batch, channels, height, width).
Returns
Reshaped tensor.
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)`
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2020-10-01 UTC."],[],[]]