TensorFlow幂值计算函数:tf.pow
2018-11-11 14:06 更新
tf.pow 函数
pow(
x,
y,
name=None
)
定义在:tensorflow/python/ops/math_ops.py.
请参阅指南:数学函数>基本数学函数
计算一个值到另一个值的幂.
给定一个张量 x 和一个张量 y,这个操作计算对应于 \(x^y\) 中的 x 元素和 y 元素.例如:
x = tf.constant([[2, 2], [3, 3]])
y = tf.constant([[8, 16], [2, 3]])
tf.pow(x, y) # [[256, 65536], [9, 27]]
参数:
- x:一个类型为 float32 、float64、int32、int64、complex64 或 complex128 的 Tensor.
- y:一个类型为 float32 、float64、int32、int64、complex64 或 complex128 的 Tensor.
- name:操作的名称(可选).
返回:
该操作将返回一个 Tensor.