如何创建包含要训练的文本的语法
我读过 Eric 关于如何训练 SAPI 识别器的博客,并遵循了伪代码。但我不知道如何创建包含要训练的文本的语法。现在我有了正确的音频转录,但我不知道如何将这个正确的转录文件连接到语法。我需要创建 XML 文件吗?能告诉我接口名称吗?太感谢了。
I've read the blog of Eric about How to train the SAPI recognizer, and followed the pseudocode. But I don't know how to create a grammar containing the text to train. Now I have the correct transcript of the audio, but I don't know how to connect this correct transcript file to the grammar. Do I need to create a XML file? Could you tell me the interface name? Thank you so much.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将脚本文件读入字符串,然后使用 ISpGrammarBuilder::AddWordTransition 定义包含字符串的简单语法。然后处理波形文件中的音频,您应该会收到一个识别事件。
Read the transcript file into a string, and then use ISpGrammarBuilder::AddWordTransition to define a simple grammar containing the string. Then process the audio from the wavefile, and you should get a recognition event.