tf.squeeze() Function函数作用

tf.squeeze() Function函数作用

tf.squeeze(input, squeeze_dims=None, name=None)

Removes dimensions of size 1 from the shape of a tensor.
从tensor中删除所有大小是1的维度

Given a tensor input, this operation returns a tensor of the same type with all dimensions of size 1 removed. If you don’t want to remove all size 1 dimensions, you can remove specific size 1 dimensions by specifying squeeze_dims.

给定张量输入,此操作返回相同类型的张量,并删除所有尺寸为1的尺寸。 如果不想删除所有尺寸1尺寸,可以通过指定squeeze_dims来删除特定尺寸1尺寸。
如果不想删除所有大小是1的维度,可以通过squeeze_dims指定。

作用相当与将矩阵展开
--------------------- 
作者:Eric_LH 
来源:CSDN 
原文:https://blog.csdn.net/Eric_LH/article/details/78005435 
版权声明:本文为博主原创文章,转载请附上博文链接!

你可能感兴趣的:(#,tensorflow)