从张量的形状中删除大小为 1 的维度。 (不推荐使用的参数)
用法
tf.compat.v1.squeeze(
input, axis=None, name=None, squeeze_dims=None
)
参数
-
input
一个Tensor
。input
要挤压。 -
axis
ints
的可选列表。默认为[]
。如果指定,仅压缩列出的尺寸。维度索引从 0 开始。挤压不是 1 的维度是错误的。必须在[-rank(input), rank(input))
范围内。如果input
是RaggedTensor
,则必须指定。 -
name
操作的名称(可选)。 -
squeeze_dims
不推荐使用的关键字参数,现在是轴。
返回
-
一个
Tensor
。具有与input
相同的类型。包含与input
相同的数据,但删除了一个或多个大小为 1 的维度。
抛出
-
ValueError
当同时指定squeeze_dims
和axis
时。
警告:不推荐使用某些参数:(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]
注意:如果 input
是 tf.RaggedTensor
,则此操作需要 O(N)
时间,其中 N
是压缩维度中的元素数。
相关用法
- Python tf.compat.v1.strings.length用法及代码示例
- Python tf.compat.v1.scatter_min用法及代码示例
- Python tf.compat.v1.summary.merge用法及代码示例
- Python tf.compat.v1.size用法及代码示例
- Python tf.compat.v1.scatter_add用法及代码示例
- Python tf.compat.v1.summary.FileWriter用法及代码示例
- Python tf.compat.v1.scatter_div用法及代码示例
- Python tf.compat.v1.space_to_batch用法及代码示例
- Python tf.compat.v1.string_split用法及代码示例
- Python tf.compat.v1.set_random_seed用法及代码示例
- Python tf.compat.v1.sparse_to_dense用法及代码示例
- Python tf.compat.v1.sparse_segment_sum用法及代码示例
- Python tf.compat.v1.scatter_update用法及代码示例
- Python tf.compat.v1.sparse_split用法及代码示例
- Python tf.compat.v1.string_to_number用法及代码示例
- Python tf.compat.v1.saved_model.simple_save用法及代码示例
- Python tf.compat.v1.scatter_nd_sub用法及代码示例
- Python tf.compat.v1.sparse_reduce_max用法及代码示例
- Python tf.compat.v1.shape用法及代码示例
- Python tf.compat.v1.setdiff1d用法及代码示例
注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.compat.v1.squeeze。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。