SemanticValue.Confidence 属性

定义

返回有关返回 SemanticValue 的当前实例的语义分析的正确性的某个相对度量。

public:
 property float Confidence { float get(); };
public float Confidence { get; }
member this.Confidence : single
Public ReadOnly Property Confidence As Single

属性值

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 后者将返回语音识别的准确性度量值。

适用于