Overview
Raises a number to the power specified.
{% x.pow(y) = x^y %}
To create a variable set to the value of 2
let x = tf.variable(tf.scalar(2));
x.pow(tf.scalar(3));
Try it!
let x = tf.variable(tf.scalar(2));
x.pow(tf.scalar(3));
Try it!