mindspore.ops.LogSoftmax
- class mindspore.ops.LogSoftmax(axis=- 1)[源代码]
LogSoftmax激活函数。
更多参考详见
mindspore.ops.log_softmax()
。- 支持平台:
Ascend
GPU
CPU
样例:
>>> logits = Tensor(np.array([1, 2, 3, 4, 5]), mindspore.float32) >>> log_softmax = ops.LogSoftmax() >>> output = log_softmax(logits) >>> print(output) [-4.4519143 -3.4519143 -2.4519143 -1.4519144 -0.4519144]