Computes Gauss error function of the input tf.Tensor element-wise: erf(x)
tf.Tensor
erf(x)
const x = tf.tensor1d([0, .1, -.1, .7]);x.erf().print(); // or tf.erf(x); Copy
const x = tf.tensor1d([0, .1, -.1, .7]);x.erf().print(); // or tf.erf(x);
The input tensor.
Generated using TypeDoc
Computes Gauss error function of the input
tf.Tensor
element-wise:erf(x)