tf.pow(
x,
y,
name=None
)
Defined in tensorflow/python/ops/math_ops.py.
See the guide: Math > Basic Math Functions
Computes the power of one value to another.
Given a tensor x and a tensor y, this operation computes \(x^y\) for corresponding elements in x and y. For example:
x = tf.constant([[2, 2], [3, 3]]) y = tf.constant([[8, 16], [2, 3]]) tf.pow(x, y) # [[256, 65536], [9, 27]]
x: A Tensor of type float32, float64, int32, int64, complex64, or complex128.y: A Tensor of type float32, float64, int32, int64, complex64, or complex128.name: A name for the operation (optional).A Tensor.
© 2018 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 3.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/api_docs/python/tf/pow