训练 sphinxtrain 时出错

问题描述

我正在尝试为一种语言实现 sphinx 模型。但是我在训练系统时遇到了一些错误

cmd中使用以下命令训练sphinx

def parentheses_helper(open,close,word,lst):
    """ get 2 equal integers and return all the combination of balanced parantheses """
    if open == 0 and close == 0:
        lst.append(word) 
        print(lst)
    if open > close:
        return
    if open > 0:
        parentheses_helper(open - 1,word + '(',lst)
    if close > 0:
        parentheses_helper(open,close - 1,word + ')',lst)


def parentheses(n):
    parentheses_helper(n,n,'',[])

但是,我收到以下错误

python ../sphinxtrain/scripts/sphinxtrain run

Here文件 slave.pl:

还有这些错误

Can't open D:/sphinx/other/result/other-1-1.match
word_align.pl Failed with error code -1 at D:/sphinx/sphinxtrain/scripts/decode/slave.pl line 173.

INFO: feat.c(715): Initializing feature stream to type: '1s_c_d_dd',ceplen=13,CMN='batch',VARnorM='no',AGC='none' ERROR: "acmod.c",line 79: Folder 'D:/sphinx/other/model_parameters/other.ci_cont' does not contain acoustic model deFinition 'mdef' FATAL: "batch.c",line 913: PocketSphinx decoder init Failed 也是空白。

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)

相关问答

Selenium Web驱动程序和Java。元素在(x,y)点处不可单击。其...
Python-如何使用点“。” 访问字典成员?
Java 字符串是不可变的。到底是什么意思?
Java中的“ final”关键字如何工作?(我仍然可以修改对象。...
“loop:”在Java代码中。这是什么,为什么要编译?
java.lang.ClassNotFoundException:sun.jdbc.odbc.JdbcOdbc...