将维度 1 插入到张量的形状中。
用法
tf.raw_ops.ExpandDims(
input, axis, name=None
)
参数
-
input
一个Tensor
。 -
axis
一个Tensor
。必须是以下类型之一:int32
,int64
。 0-D(标量)。指定扩展input
形状的维度索引。必须在[-rank(input) - 1, rank(input)]
范围内。 -
name
操作的名称(可选)。
返回
-
一个
Tensor
。具有与input
相同的类型。
给定一个张量 input
,此操作在 input
的形状的维度索引 axis
处插入维度 1。维度索引axis
从零开始;如果您为 axis
指定负数,则它从末尾倒数。
如果您想将批量维度添加到单个元素,此操作很有用。例如,如果您有一个形状为 [height, width,
channels]
的图像,则可以使用 expand_dims(image, 0)
将其制作为一组 1 张图像,这将生成形状为 [1, height, width, channels]
。
其他示例:
# 't' is a tensor of shape [2]
shape(expand_dims(t, 0)) ==> [1, 2]
shape(expand_dims(t, 1)) ==> [2, 1]
shape(expand_dims(t, -1)) ==> [2, 1]
# 't2' is a tensor of shape [2, 3, 5]
shape(expand_dims(t2, 0)) ==> [1, 2, 3, 5]
shape(expand_dims(t2, 2)) ==> [2, 3, 1, 5]
shape(expand_dims(t2, 3)) ==> [2, 3, 5, 1]
此操作要求:
-1-input.dims() <= dim <= input.dims()
此操作与 squeeze()
相关,它删除大小为 1 的维度。
相关用法
- Python tf.raw_ops.Expm1用法及代码示例
- Python tf.raw_ops.Exp用法及代码示例
- Python tf.raw_ops.ExtractVolumePatches用法及代码示例
- Python tf.raw_ops.Erf用法及代码示例
- Python tf.raw_ops.Elu用法及代码示例
- Python tf.raw_ops.Equal用法及代码示例
- Python tf.raw_ops.Eig用法及代码示例
- Python tf.raw_ops.TPUReplicatedInput用法及代码示例
- Python tf.raw_ops.Bitcast用法及代码示例
- Python tf.raw_ops.SelfAdjointEigV2用法及代码示例
- Python tf.raw_ops.BatchMatMul用法及代码示例
- Python tf.raw_ops.OneHot用法及代码示例
- Python tf.raw_ops.ResourceScatterNdSub用法及代码示例
- Python tf.raw_ops.ReadVariableXlaSplitND用法及代码示例
- Python tf.raw_ops.GatherV2用法及代码示例
- Python tf.raw_ops.BitwiseAnd用法及代码示例
- Python tf.raw_ops.UniqueWithCounts用法及代码示例
- Python tf.raw_ops.DecodeGif用法及代码示例
- Python tf.raw_ops.Size用法及代码示例
- Python tf.raw_ops.ScatterUpdate用法及代码示例
注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.raw_ops.ExpandDims。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。