From 4a02a721a2ba11bbfb415c401d387544a4538b1f Mon Sep 17 00:00:00 2001 From: Neil Chien Date: Mon, 21 Jan 2019 13:40:11 +0800 Subject: [PATCH] Correct the misdescription of LogSoftmax class Correct the misdescription comment of LogSoftmax class from 'softmax loss function' to 'logarithm of softmax' --- example/bayesian-methods/bdk_demo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/bayesian-methods/bdk_demo.py b/example/bayesian-methods/bdk_demo.py index bd883d226a2d..a59b4df4fe44 100644 --- a/example/bayesian-methods/bdk_demo.py +++ b/example/bayesian-methods/bdk_demo.py @@ -58,7 +58,7 @@ def backward(self, out_grad, in_data, out_data, in_grad): class LogSoftmax(mx.operator.NumpyOp): - """Generate helper functions to evaluate softmax loss function""" + """Generate helper functions to calculate the logarithm of softmax""" def __init__(self): super(LogSoftmax, self).__init__(False)