"git@developer.sourcefind.cn:hehl2/torchaudio.git" did not exist on "87eca36dc95de85b5769c2b4857c3361e80c9ed4"
Commit 469a8257 authored by Mark Daoust's avatar Mark Daoust
Browse files

Clarify softmax for probabilities

parent 6c9e79a9
...@@ -553,7 +553,7 @@ ...@@ -553,7 +553,7 @@
"source": [ "source": [
"For each example it returns a *[logit](https://developers.google.com/machine-learning/crash-course/glossary#logits)* score for each class. \n", "For each example it returns a *[logit](https://developers.google.com/machine-learning/crash-course/glossary#logits)* score for each class. \n",
"\n", "\n",
"You can calculate the probability that the model assigns to each class using the [`tf.nn.softmax`](https://www.tensorflow.org/api_docs/python/tf/nn/softmax) function.\n", "You can convert logits to probabilities for each class using the [`tf.nn.softmax`](https://www.tensorflow.org/api_docs/python/tf/nn/softmax) function.\n",
"\n", "\n",
"The model hasn't been trained yet, so these aren't very good predictions." "The model hasn't been trained yet, so these aren't very good predictions."
] ]
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment