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 131fdeb commit 99e7123Copy full SHA for 99e7123
packages/google-cloud-speech/samples/snippets/transcribe_streaming.py
@@ -41,7 +41,7 @@ def transcribe_streaming(stream_file):
41
for alternative in alternatives:
42
print('Finished: {}'.format(alternative.is_final))
43
print('Stability: {}'.format(alternative.stability))
44
- print('Transcript: {}'.format(alternative.confidence))
+ print('Confidence: {}'.format(alternative.confidence))
45
print('Transcript: {}'.format(alternative.transcript))
46
47
0 commit comments