tf.pow()

tf.pow(x, y, name=None)

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:

# tensor 'x' is [[2, 2], [3, 3]]
# tensor 'y' is [[8, 16], [2, 3]]
tf.pow(x, y) ==> [[256, 65536], [9, 27]]
Args:
  • 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).
Returns:

A Tensor.

doc_TensorFlow
2016-10-14 13:08:43
Comments
Leave a Comment

Please login to continue.