Click or drag to resize
Confidence Enumeration
Indicates the Confidence level ascribed by the Speech Recognition Server to each n-best result. This is different than the EngineConfidence. The EngineConfidence is a float from 0.0 to 1.0 from representing the confidence the base recognition algorithm on the correctness of the recognized text. A value of 1 would mean 100% confidence. The Confidence level is based on a quantization of the EngineConfidence and also takes into account processing after the base engine that affects the confidence, like ITN.

Namespace: Microsoft.CognitiveServices.SpeechRecognition
Assembly: SpeechClient (in SpeechClient.dll) Version: 0.0.0.0
Syntax
public enum Confidence
Members
  Member nameValueDescription
None-2 Indicates the speech recognition service has no confidence that the recognized phrase correctly represents the audio sample associated with the phrase or that the speech recognition service did not provide a confidence value for the audio sample
Low-1 Indicates the speech recognition service has low confidence that the recognized phrase correctly represents the audio sample associated with the phrase
Normal0 Indicates the speech recognition service has normal confidence that the recognized phrase correctly represents the audio sample associated with the phrase.
High1 Indicates the speech recognition service has high confidence that the recognized phrase correctly represents the audio sample associated with the phrase.
See Also