共用方式為


SpeechRecognitionResult.RawConfidence 屬性

定義

取得值,這個值表示 SpeechRecognitionResult 與辨識結果所傳回之替代專案的集合相較之下的相對信賴度。

public:
 property double RawConfidence { double get(); };
double RawConfidence();
public double RawConfidence { get; }
var double = speechRecognitionResult.rawConfidence;
Public ReadOnly Property RawConfidence As Double

屬性值

Double

double

結果的信賴等級。

備註

RawConfidence 不會指出正確辨識片語的可能性。 相反地,它提供一種方式來比較傳回的替代專案與辨識結果的相對精確度。 例如,RawConfidence 分數為 0.8 並不表示結果可能是 80% 可能正確;這表示片語比使用 RawConfidence 為 0.7 的替代專案更可能。

請勿使用 RawConfidence 來判斷是否應該捨棄結果。 RawConfidence 值對每個辨識引擎而言都是唯一的,而且在會話或裝置之間可能會有所不同。 相反地,請檢查 Confidence 屬性,這表示 SpeechRecognitionConfidence 為 High、Medium、Low 或 Rejected。

適用於

另請參閱