Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
laichunpongben authored and Jon Wayne Parrott committed May 2, 2017
1 parent 989fc82 commit fccb028
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion samples/snippets/transcribe_streaming.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def transcribe_streaming(stream_file):
for alternative in alternatives:
print('Finished: {}'.format(alternative.is_final))
print('Stability: {}'.format(alternative.stability))
print('Transcript: {}'.format(alternative.confidence))
print('Confidence: {}'.format(alternative.confidence))
print('Transcript: {}'.format(alternative.transcript))


Expand Down

0 comments on commit fccb028

Please sign in to comment.