mindspore.Tensor.exp

查看源文件
mindspore.Tensor.exp()

逐元素计算 self 的指数。

\[out_i = e^{x_i}\]

说明

指数函数的输入Tensor。上述公式中的 \(x\)

返回:

Tensor,具有与 self 相同的shape。

异常:
  • TypeError - self 不是Tensor。

支持平台:

Ascend GPU CPU

样例:

>>> import mindspore
>>> import numpy as np
>>> from mindspore import Tensor
>>> input = Tensor(np.array([0.0, 1.0, 3.0]), mindspore.float32)
>>> output = Tensor.exp(input)
>>> print(output)
[ 1.        2.7182817 20.085537]