mindspore.Tensor.expm1
- mindspore.Tensor.expm1()
逐元素计算 self 的指数,然后减去1。
\[out_i = e^{x_i} - 1\]说明
指数函数的输入Tensor。上述公式中的 \(x\) 。
- 返回:
Tensor,shape与 self 相同。
- 异常:
TypeError - 如果 self 不是Tensor。
- 支持平台:
Ascend
GPU
CPU
样例:
>>> import mindspore >>> import numpy as np >>> from mindspore import Tensor >>> x = Tensor(np.array([0.0, 1.0, 2.0, 4.0]), mindspore.float32) >>> output = x.expm1() >>> print(output) [ 0. 1.718282 6.389056 53.598152]