aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--tensorflow/contrib/kfac/python/ops/loss_functions.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tensorflow/contrib/kfac/python/ops/loss_functions.py b/tensorflow/contrib/kfac/python/ops/loss_functions.py
index e2e5bc3ffe..d449abcfa7 100644
--- a/tensorflow/contrib/kfac/python/ops/loss_functions.py
+++ b/tensorflow/contrib/kfac/python/ops/loss_functions.py
@@ -91,13 +91,13 @@ class LossFunction(object):
@abc.abstractmethod
def _evaluate(self, targets):
- """Evaluates the log probability of the targets.
+ """Evaluates the negative log probability of the targets.
Args:
targets: Tensor that distribution can calculate log_prob() of.
Returns:
- log probability of each target, summed across all targets.
+ negative log probability of each target, summed across all targets.
"""
pass