mindspore.ops.LogSoftmax
- class mindspore.ops.LogSoftmax(axis=- 1)[源代码]
prim = ops.LogSoftmax(axis) out = prim(logits)
等价于
ops.log_softmax(logits, axis)
更多详情请查看:
mindspore.ops.log_softmax()
。
prim = ops.LogSoftmax(axis)
out = prim(logits)
等价于
ops.log_softmax(logits, axis)
更多详情请查看: mindspore.ops.log_softmax()
。