Click or drag to resize

SpeechRecognitionAlternative Class

The alternatives.
Inheritance Hierarchy
SystemObject
  IBM.Watson.DeveloperCloud.Services.SpeechToText.v1SpeechRecognitionAlternative

Namespace:  IBM.Watson.DeveloperCloud.Services.SpeechToText.v1
Assembly:  unity-documentation (in unity-documentation.exe) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public class SpeechRecognitionAlternative

The SpeechRecognitionAlternative type exposes the following members.

Constructors
  NameDescription
Public methodSpeechRecognitionAlternative
Initializes a new instance of the SpeechRecognitionAlternative class
Top
Properties
  NameDescription
Public propertyconfidence
Confidence score of the transcript in the range of 0 to 1. Available only for the best alternative and only in results marked as final.
Public propertytimestamps
Time alignments for each word from transcript as a list of lists. Each inner list consists of three elements: the word followed by its start and end time in seconds. Example: [["hello",0.0,1.2],["world",1.2,2.5]]. Available only for the best alternative.
Public propertyTimestamps
A optional array of timestamps objects.
Public propertytranscript
Transcription of the audio.
Public propertyword_confidence
Confidence score for each word of the transcript as a list of lists. Each inner list consists of two elements: the word and its confidence score in the range of 0 to 1. Example: [["hello",0.95],["world",0.866]]. Available only for the best alternative and only in results marked as final.
Public propertyWordConfidence
A option array of word confidence values.
Top
See Also