语音识别语法中重复概率的规范位于http://www.w3.org/TR/speech-grammar/#S2.5.1 这包括以下示例:
<-- The rule reference to digit must occur two to four times -->
<-- with 80% probability of recurrence. -->
<item repeat="2-4" repeat-prob=".8">
<ruleref uri="#digit"/>
</item>
我试图确定这个例子的含义。语法中话语的最小长度可以包含两个数字。那么是否遵循 3 位话语的概率是 0.8,而 4 位话语的概率是 0.64?
还是我误解了“重复概率”的含义?