sphinx4 使用什么方法来构建其语法?
sphinx4
使用什么方法来构建其语法? XML
还是增强的 BNF
?
What method does sphinx4
use for building its grammar? XML
or augmented BNF
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看来两者都接受。查看 Sphinx4 源代码发行版中的 src/apps/edu/cmu/sphinx/demo/transcriber/digits.{gram,grmxl} 文件。
It seems to accept both. Look at the
src/apps/edu/cmu/sphinx/demo/transcriber/digits.{gram,grmxl}
files in the Sphinx4 source distribution.Sphinx4
解析ABNF
格式的JSGF
语法。目前它支持
SRGS xml
格式,但请小心。它还不是一个完整的实现,我的意思是它没有实现所有 SRGS 元素和属性,因此您实际上不能依赖它们当前的实现,除非您继续它并填充剩下的内容。Sphinx4
parsesJSGF
grammar which is inABNF
format.It currently support
SRGS xml
format, but take care. It is not a complete implementation yet, I mean it does not implement allSRGS
elements and attributes, so you can't actually depend on their current implementation unless you continue it and fill whats left.