pytorch / 2 / generated / torch.exp.html

torch.exp

torch.exp(input, *, out=None) → Tensor

Returns a new tensor with the exponential of the elements of the input tensor input.

y i = e x i y_{i} = e^{x_{i}}
Parameters

input (Tensor) – the input tensor.

Keyword Arguments

out (Tensor, optional) – the output tensor.

Example:

>>> torch.exp(torch.tensor([0, math.log(2.)]))
tensor([ 1.,  2.])

© 2024, PyTorch Contributors
PyTorch has a BSD-style license, as found in the LICENSE file.
https://pytorch.org/docs/2.1/generated/torch.exp.html