PyTorch
torch / torch
torch.expm1¶
-
torch.
expm1
(input, *, out=None) → Tensor¶ Returns a new tensor with the exponential of the elements minus 1 of
input
.yi=exi−1- Parameters
input (Tensor) – the input tensor.
- Keyword Arguments
out (Tensor, optional) – the output tensor.
Example:
>>> torch.expm1(torch.tensor([0, math.log(2.)])) tensor([ 0., 1.])
此页内容是否对您有帮助
感谢反馈!