mindspore.ops.Log

class mindspore.ops.Log[源代码]

逐元素返回Tensor的自然对数。

更多参考详见 mindspore.ops.log()

支持平台:

Ascend GPU CPU

样例:

>>> x = Tensor(np.array([1.0, 2.0, 4.0]), mindspore.float32)
>>> log = ops.Log()
>>> output = log(x)
>>> print(output)
[0.        0.6931472 1.3862944]