Computes natural logarithm of the input tf.Tensor element-wise: ln(x)
tf.Tensor
ln(x)
const x = tf.tensor1d([1, 2, Math.E]);x.log().print(); // or tf.log(x) Copy
const x = tf.tensor1d([1, 2, Math.E]);x.log().print(); // or tf.log(x)
The input tensor.
Generated using TypeDoc
Computes natural logarithm of the input
tf.Tensor
element-wise:ln(x)