我是靠谱客的博主 俊逸红牛,最近开发中收集的这篇文章主要介绍cmusphinx java_java – Sphinx4无法找到资源,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

我有个问题.你看,我正在创建这个程序,我想要语音识别. CMUSphinx 4似乎是最好的选择,所以我只是下载了罐子并将它们作为压缩库添加到我的项目中.所以我从CMUSphinx

Wiki获得了这个代码,我试了一下.这是代码:

Configuration configuration = new Configuration();

// Set path to acoustic model.

configuration.setAcousticModelPath("resource:/edu/cmu/sphinx/models/en-us/en-us");

// Set path to dictionary.

configuration.setDictionaryPath("resource:/edu/cmu/sphinx/models/en-us/cmudict-en-us.dict");

// Set language model.

configuration.setLanguageModelPath("resource:/edu/cmu/sphinx/models/en-us/en-us.lm.dmp");

不幸的是,似乎我收到了这个错误:

Caused by: Property exception component:’acousticModelLoader’ property:’location’ – Can’t locate resource:/edu/cmu/sphinx/models/en-us/en-us

edu.cmu.sphinx.util.props.InternalConfigurationException: Can’t locate resource:/edu/cmu/sphinx/models/en-us/en-us

所以,我尝试了故障排除并添加了额外的“/”

configuration.setAcousticModelPath("resource:/edu/cmu/sphinx/models/en-us/en-us/");

这似乎解决了它的一部分,但后来,添加额外的“/”后我又收到了一个错误:

Caused by: Property exception component:’dictionary’ property:’fillerPath’ – Can’t locate resource:/edu/cmu/sphinx/models/en-us/en-us//noisedict

edu.cmu.sphinx.util.props.InternalConfigurationException: Can’t locate resource:/edu/cmu/sphinx/models/en-us/en-us//noisedict

注意那里的额外“/”.基本上,是否有人有办法绕过这样一个事实:我有或没有额外的“/”错误?在我看来,sphinx4本身的代码中存在错误.我一直在尝试通过反编译错误中涉及的每个类而没有运气来追踪额外“/”的添加位置.救命?

最后

以上就是俊逸红牛为你收集整理的cmusphinx java_java – Sphinx4无法找到资源的全部内容,希望文章能够帮你解决cmusphinx java_java – Sphinx4无法找到资源所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(62)

评论列表共有 0 条评论

立即
投稿
返回
顶部