计算 concat 输入在其输出中的偏移量。
用法
tf.raw_ops.ConcatOffset(
concat_dim, shape, name=None
)
参数
-
concat_dim
Tensor
类型为int32
。要连接的维度。 -
shape
至少 2 个类型为int32
的Tensor
对象的列表。N
int32 向量表示被连接的张量的形状。 -
name
操作的名称(可选)。
返回
-
与类型为
int32
的Tensor
对象的shape
长度相同的列表。
例如:
# 'x' is [2, 2, 7]
# 'y' is [2, 3, 7]
# 'z' is [2, 5, 7]
concat_offset(2, [x, y, z]) => [0, 0, 0], [0, 2, 0], [0, 5, 0]
这通常由梯度计算用于 concat 操作。
相关用法
- Python tf.raw_ops.Conv2D用法及代码示例
- Python tf.raw_ops.Conj用法及代码示例
- Python tf.raw_ops.ComplexAbs用法及代码示例
- Python tf.raw_ops.Cos用法及代码示例
- Python tf.raw_ops.Cosh用法及代码示例
- Python tf.raw_ops.Complex用法及代码示例
- Python tf.raw_ops.Case用法及代码示例
- Python tf.raw_ops.CheckNumerics用法及代码示例
- Python tf.raw_ops.Cumsum用法及代码示例
- Python tf.raw_ops.Cumprod用法及代码示例
- Python tf.raw_ops.CumulativeLogsumexp用法及代码示例
- 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.Expm1用法及代码示例
注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.raw_ops.ConcatOffset。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。