PyTorch - torch.exp[1]

torch.exp(torch.tensor([1, 2, 3], [4, 5, 6]))
# tensor([e^1,  e^2, e^3], [e^4, e^5, e^6])

explain

  • Returns a new tensor with the exponential of the elements of the input tensor input.
    • 입력 텐서인 input의 각 요소를 자연 상수를 밑으로 하는 exponential(지수)로서 변환합니다.
\[y_{i} = e^{x_{i}}\]

Parameters

  • input: torch.Tensor
    • the input tensor.
      • 입력 텐서입니다.

Keyword Arguments

  • out: Optional[torch.Tensor] = None
    • the output tensor
      • 출력할 텐서입니다.
      • 입력 텐서의 각 요소를 자연 상수를 밑으로 하는 지수로 변환되어 계산됩니다.

Reference

1. TORCH.EXP, PyTorch, https://pytorch.org/docs/stable/generated/torch.exp.html#torch.exp