TensorFlow数学函数:tf.scalar_mul
2018-01-03 10:54 更新
tf.scalar_mul 函数
scalar_mul(
scalar,
x
)
定义在:tensorflow/python/ops/math_ops.py.
请参阅指南:数学函数>算术运算符
将标量乘以一个张量(Tensor)或 IndexedSlices 对象.
用于可能处理IndexedSlices对象的梯度代码,这些对象很容易乘以标量,但是与任意张量相乘则更加昂贵.
参数
- scalar:0-D的标量Tensor.必须有已知的形状.
- x:要缩放的张量(Tensor)或 IndexedSlices.
返回值
返回与 x 相同类型 (Tensor或 IndexedSlices)的标量 * x.
可能引发的异常
- ValueError:如果标量不是 0-D scalar.