标签:tar default == 相同 rem defaults 操作 efault lis
转载自:https://www.cnblogs.com/mdumpling/p/8053376.html
tf.squeeze(input, squeeze_dims=None, name=None)
从tensor中删除所有大小是1的维度
给定张量输入,此操作返回相同类型的张量,并删除所有尺寸为1的尺寸。 如果不想删除所有大小是1的维度,可以通过squeeze_dims指定。
# ‘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]
标签:tar default == 相同 rem defaults 操作 efault lis
原文地址:https://www.cnblogs.com/helloworld0604/p/9064239.html