在给定已知形状的情况下计算广播的形状。
用法
tf.broadcast_static_shape(
shape_x, shape_y
)
参数
-
shape_x
TensorShape
-
shape_y
TensorShape
返回
-
一个
TensorShape
表示广播的形状。
抛出
-
ValueError
如果这两个形状无法播放。
当 shape_x
和 shape_y
是完全已知的 TensorShape
s 时,这会计算 TensorShape
,它是在形状 shape_x
和 shape_y
的张量中应用的广播操作的结果的形状。
例如,如果 shape_x 是 TensorShape([1, 2, 3])
并且 shape_y 是 TensorShape([5, 1, 3])
,则结果是一个 TensorShape ,其值为 TensorShape([5, 2, 3])
。
当张量具有静态已知形状时,这在验证广播操作的结果时很有用。
例子:
shape_x = tf.TensorShape([1, 2, 3])
shape_y = tf.TensorShape([5, 1 ,3])
tf.broadcast_static_shape(shape_x, shape_y)
TensorShape([5, 2, 3])
相关用法
- Python tf.broadcast_to用法及代码示例
- Python tf.broadcast_dynamic_shape用法及代码示例
- Python tf.bitcast用法及代码示例
- Python tf.boolean_mask用法及代码示例
- Python tf.bitwise.bitwise_or用法及代码示例
- Python tf.batch_to_space用法及代码示例
- Python tf.bitwise.bitwise_and用法及代码示例
- Python tf.bitwise.bitwise_xor用法及代码示例
- Python tf.bitwise.invert用法及代码示例
- Python tf.bitwise.right_shift用法及代码示例
- Python tf.bitwise.left_shift用法及代码示例
- Python tf.compat.v1.distributions.Multinomial.stddev用法及代码示例
- Python tf.compat.v1.distribute.MirroredStrategy.experimental_distribute_dataset用法及代码示例
- Python tf.compat.v1.data.TFRecordDataset.interleave用法及代码示例
- Python tf.summary.scalar用法及代码示例
- Python tf.linalg.LinearOperatorFullMatrix.matvec用法及代码示例
- Python tf.linalg.LinearOperatorToeplitz.solve用法及代码示例
- Python tf.raw_ops.TPUReplicatedInput用法及代码示例
- Python tf.raw_ops.Bitcast用法及代码示例
- Python tf.compat.v1.distributions.Bernoulli.cross_entropy用法及代码示例
注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.broadcast_static_shape。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。