Computes exponential of the input tf.Tensor element-wise. e ^ x
tf.Tensor
e ^ x
const x = tf.tensor1d([1, 2, -3]);x.exp().print(); // or tf.exp(x) Copy
const x = tf.tensor1d([1, 2, -3]);x.exp().print(); // or tf.exp(x)
The input tensor.
Computes exponential of the input
tf.Tensor
element-wise.e ^ x