aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/g3doc/api_docs/python/nn.md
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2016-10-18 13:44:07 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2016-10-18 14:49:10 -0700
commit68856747d37eb606a4a51dcdcee21ba05252e655 (patch)
tree24c3f897d1c1d1f58b40336d50856dac80578a35 /tensorflow/g3doc/api_docs/python/nn.md
parent96a5f7d8ea6e4f50d03d064a55f8fc6072692337 (diff)
Update generated Python Op docs.
Change: 136522712
Diffstat (limited to 'tensorflow/g3doc/api_docs/python/nn.md')
-rw-r--r--tensorflow/g3doc/api_docs/python/nn.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/tensorflow/g3doc/api_docs/python/nn.md b/tensorflow/g3doc/api_docs/python/nn.md
index 9f45aba7e6..7ce8700e36 100644
--- a/tensorflow/g3doc/api_docs/python/nn.md
+++ b/tensorflow/g3doc/api_docs/python/nn.md
@@ -1636,7 +1636,7 @@ equivalent formulation
### `tf.nn.softmax(logits, dim=-1, name=None)` {#softmax}
-Computes log softmax activations.
+Computes softmax activations.
For each batch `i` and class `j` we have
@@ -1670,7 +1670,7 @@ Computes log softmax activations.
For each batch `i` and class `j` we have
- logsoftmax = logits - reduce_sum(exp(logits), dim)
+ logsoftmax = logits - log(reduce_sum(exp(logits), dim))
##### Args: