转载自:http://www.javashuo.com/article/p-mvwbjeqv-bq.htmlhtml
tf.squeeze(input, squeeze_dims=None, name=None)spa
从tensor中删除全部大小是1的维度code
给定张量输入,此操做返回相同类型的张量,并删除全部尺寸为1的尺寸。 若是不想删除全部大小是1的维度,能够经过squeeze_dims指定。htm
# 't' is a tensor of shape [1, 2, 1, 3, 1, 1] shape(squeeze(t)) ==> [2, 3] Or, to remove specific size 1 dimensions: # 't' is a tensor of shape [1, 2, 1, 3, 1, 1] shape(squeeze(t, [2, 4])) ==> [1, 2, 3, 1]