当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python tf.compat.v1.squeeze用法及代码示例


从张量的形状中删除大小为 1 的维度。 (不推荐使用的参数)

用法

tf.compat.v1.squeeze(
    input, axis=None, name=None, squeeze_dims=None
)

参数

  • input 一个Tensorinput 要挤压。
  • axis ints 的可选列表。默认为 [] 。如果指定,仅压缩列出的尺寸。维度索引从 0 开始。挤压不是 1 的维度是错误的。必须在 [-rank(input), rank(input)) 范围内。如果 inputRaggedTensor ,则必须指定。
  • name 操作的名称(可选)。
  • squeeze_dims 不推荐使用的关键字参数,现在是轴。

返回

  • 一个Tensor。具有与 input 相同的类型。包含与 input 相同的数据,但删除了一个或多个大小为 1 的维度。

抛出

  • ValueError 当同时指定squeeze_dimsaxis 时。

警告:不推荐使用某些参数:(squeeze_dims)。它们将在未来的版本中被删除。更新说明:改用 axis 参数

给定一个张量 input ,此操作返回一个相同类型的张量,其中删除了所有大小为 1 的维度。如果您不想删除所有尺寸 1 的尺寸,您可以通过指定 axis 来删除特定的尺寸 1 尺寸。

例如:

# 't' is a tensor of shape [1, 2, 1, 3, 1, 1]
t = tf.ones([1, 2, 1, 3, 1, 1])
print(tf.shape(tf.squeeze(t)).numpy())
[2 3]

或者,要删除特定尺寸 1 尺寸:

# 't' is a tensor of shape [1, 2, 1, 3, 1, 1]
t = tf.ones([1, 2, 1, 3, 1, 1])
print(tf.shape(tf.squeeze(t, [2, 4])).numpy())
[1 2 3 1]

注意:如果 inputtf.RaggedTensor ,则此操作需要 O(N) 时间,其中 N 是压缩维度中的元素数。

相关用法


注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.compat.v1.squeeze。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。