SemanticValue.Confidence プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
SemanticValue の現在のインスタンスを返すセマンティック解析の正確性について相対計測を返します。
public:
property float Confidence { float get(); };
public float Confidence { get; }
member this.Confidence : single
Public ReadOnly Property Confidence As Single
プロパティ値
SemanticValue の現在のインスタンスを返すセマンティック解析の確実性の相対計測である float
を返します。
例
次の例では、再帰的に走査し、情報 (信頼度を含む) を として TreeNodeCollection表示するか、語句を認識するために使用されるセマンティクスのツリー構造を構成するノードとして表示します。
internal static void CreateSemanticsTreeNodes(
TreeNodeCollection nodes,
SemanticValue semantics,
String name)
{
string semanticsText =
String.Format(" {0} (Confidence {1})", name,semantics.Confidence);
// Format integers as hexadecimal.
if (semantics.Value == null )
{
semanticsText = semanticsText + " = null";
}
else if (semantics.Value.GetType() == typeof(int))
{
semanticsText = String.Format("{0} = {1:X} ", semanticsText, semantics.Value);
}
else
{
semanticsText = semanticsText + " = " + semantics.Value.ToString();
}
TreeNode semanticsNode = new TreeNode(semanticsText);
foreach (KeyValuePair<String, SemanticValue> child in semantics)
{
CreateSemanticsTreeNodes(semanticsNode.Nodes, child.Value, child.Key);
}
nodes.Add(semanticsNode);
}
注釈
SemanticValue.Confidenceセマンティック解析の正確性の尺度を返す プロパティは、 プロパティとRecognizedPhrase.Confidence混同しないでください。このプロパティは、音声認識の精度の測定値を返します。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET