2

我试图在我的语音识别中使用某种语法。

我的语法定义如下:

<rule id="showFlight">
<example>Show me Alaska Airlines flight number 2117</example>
<example>Where is US Airways flight 45</example>
<item>
  <one-of>
    <item>show me</item>
    <item>where is</item>
  </one-of>
</item>
<item>
  <ruleref uri="#airline" />
  <tag>out.Carrier = rules.airline;</tag>
</item>
flight
<item repeat="0-1">number</item>
<item repeat="1-">
  <ruleref uri="#digit" />
  <tag>out.Number = rules.digit;</tag>
</item>
</rule>

我的问题在于最后一个 - 数字。我定义语法中可以存在一个或多个数字,这是有效的。但是当我去提取 OnSpeechRecognized 回调中的值时,我只得到了最后一个数字。

    public override bool OnSpeechRecognized(object sender, Microsoft.Speech.Recognition.SpeechRecognizedEventArgs e)
    {
        String output = String.Format("Recognition Summary:\n" +
            "  Recognized phrase: {0}\n" +
            "  Confidence score {1}\n" +
            "  Grammar used: {2}\n",
            e.Result.Text, e.Result.Confidence, e.Result.Grammar.Name);
        Console.WriteLine(output);

        // Display the semantic values in the recognition result.
        Console.WriteLine("  Semantic results:");
        //Console.WriteLine(e.Result.Semantics["Flight"].Value);

        foreach (KeyValuePair<String, SemanticValue> child in e.Result.Semantics["ShowFlight"])
        {
            Console.WriteLine("    {0} is {1}",
              child.Key, child.Value.Value ?? "null");
        }
        Console.WriteLine();

...

或者,更直接地:

e.Result.Semantics["ShowFlight"]["Number"].Value.ToString()

如果我说“二一一七”,[“Number”] 中唯一的数字是 7。同样,如果我说“四五”,我得到的唯一数字是 5。

如何提取作为航班号一部分的所有说出的数字?

另外,是否有一个我可以加载的秘密内部语法,可以让我轻松识别“四五”和“四十五”?

4

1 回答 1

2

您可以简单地将最后一个“项目”元素替换为以下内容:

  <tag>out.Number = &quot;&quot;</tag>
  <item repeat="1-">
    <ruleref uri="#digit" />
    <tag>out.Number += rules.digit;</tag>
  </item>

这会将所有识别的数字连接到out.Number.

关于第二个问题,不幸的是,没有这样的“秘密内部语法”。您必须自己编写代码。

于 2012-09-20T02:11:35.183 回答