We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20fb016 commit a44b31cCopy full SHA for a44b31c
articles/cognitive-services/language-service/question-answering/includes/sdk-python.md
@@ -103,7 +103,7 @@ For information on how confident question answering is that this is the correct
103
```python
104
print("Q: {}".format(question))
105
print("A: {}".format(output.answers[0].answer))
106
-print("Score: {}".format(output.answers[0].confidence)) # add this line
+print("Confidence Score: {}".format(output.answers[0].confidence)) # add this line
107
```
108
109
You will now receive a result with a confidence score:
0 commit comments