torch.erf¶
-
torch.
erf
(input, *, out=None) → Tensor¶ Computes the error function of each element. The error function is defined as follows:
- Parameters
input (Tensor) – the input tensor.
- Keyword Arguments
out (Tensor, optional) – the output tensor.
Example:
>>> torch.erf(torch.tensor([0, -1., 10.])) tensor([ 0.0000, -0.8427, 1.0000])