tf.math.pow

View source on GitHub

Computes the power of one value to another.

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

Given a tensor x and a tensor y, this operation computes \(xy\) 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]]

Args:

Returns:

A Tensor.