aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/ops/distributions/categorical.py
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/python/ops/distributions/categorical.py')
-rw-r--r--tensorflow/python/ops/distributions/categorical.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/python/ops/distributions/categorical.py b/tensorflow/python/ops/distributions/categorical.py
index 66fa9e110c..8f25b1149c 100644
--- a/tensorflow/python/ops/distributions/categorical.py
+++ b/tensorflow/python/ops/distributions/categorical.py
@@ -311,7 +311,7 @@ class Categorical(distribution.Distribution):
nn_ops.log_softmax(self.logits) * self.probs, axis=-1)
def _mode(self):
- ret = math_ops.argmax(self.logits, dimension=self._batch_rank)
+ ret = math_ops.argmax(self.logits, axis=self._batch_rank)
ret = math_ops.cast(ret, self.dtype)
ret.set_shape(self.batch_shape)
return ret