在this page of the documentation,在底部,它说:
您可以在源代码中找到Sphinx-4配置文件的完整示例。例如,检查文件 sphinx4 / SRC /应用/ EDU / CMU /斯芬克斯/演示/抄录/ config.xml中
嗯,我看了,该目录中没有config.xml
,demo
内的任何其他文件夹中都没有这样的文件。
那么在哪里可以找到用于开始使用的默认配置文件?
如果我只是做Configuration configuration = new Configuration();
,那么这还不错吗?
答案 0 :(得分:0)
我最近发现你的建议还不够。看一下Github存储库中的最新代码。在https://github.com/cmusphinx/sphinx4/tree/master/sphinx4-core/src/main/resources/edu/cmu/sphinx/api有一个default.config.xml文件,它的路径在包edu.cmu.sphinx.api中的Context类中设置:
public Context(Configuration config)
throws IOException, MalformedURLException
{
this("../sphinx4/sphinx4-core/src/main/resources/edu/cmu/sphinx/api/default.config.xml", config);
}