Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/extjs/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Speech recognition 为什么我在这个语音识别代码中缺少an4-1-1.match文件?_Speech Recognition_Cmusphinx - Fatal编程技术网

Speech recognition 为什么我在这个语音识别代码中缺少an4-1-1.match文件?

Speech recognition 为什么我在这个语音识别代码中缺少an4-1-1.match文件?,speech-recognition,cmusphinx,Speech Recognition,Cmusphinx,我在语音识别的解码部分遇到问题。我跟着台阶走。当我键入:perl scripts\u pl/decode/slave.pl时,会出现以下错误: 模块:使用先前训练过的模型解码 解码从0开始的130段(第1部分,共1部分)找不到/home/go/Documents/tutorial/an4/bin/sphinx3_decode的可执行文件 在 /home/go/Documents/tutorial/an4/scripts_pl/decode/。/lib/SphinxTrain/Util.pm 第2

我在语音识别的解码部分遇到问题。我跟着台阶走。当我键入:
perl scripts\u pl/decode/slave.pl
时,会出现以下错误:

模块:使用先前训练过的模型解码 解码从0开始的130段(第1部分,共1部分)找不到/home/go/Documents/tutorial/an4/bin/sphinx3_decode的可执行文件 在 /home/go/Documents/tutorial/an4/scripts_pl/decode/。/lib/SphinxTrain/Util.pm 第299行。 对齐结果以查找错误率无法打开/home/go/Documents/tutorial/an4/result/an4-1-1.match word\u align.pl 脚本_pl/decode/slave.pl第173行出现错误代码65280,失败

这里是
word\u align.pl
第179行

#sub initialize {
    my ($ref_words, $hyp_words, $align_matrix, $backtrace_matrix) = @_;

    # All initial costs along the j axis are insertions
    for (my $j = 0; $j <= @$hyp_words; ++$j) {
    $$align_matrix[0][$j] = $j;
    }
    for (my $j = 0; $j <= @$hyp_words; ++$j) {
    $$backtrace_matrix[0][$j] = INS;
    }
    # All initial costs along the i axis are deletions
    for (my $i = 0; $i <= @$ref_words; ++$i) {
    $$align_matrix[$i][0] = $i;
    }
    for (my $i = 0; $i <= @$ref_words; ++$i) {
    $$backtrace_matrix[$i][0] = DEL;
    }
#}
#子初始化{
my($ref_words、$hyp_words、$align_matrix、$backtrace_matrix)=@;
#沿j轴的所有初始成本均为插入成本
对于(我的$j=0;$j
我按照这里的步骤走

本教程已过时。最近的一个教程已过时

找不到的可执行文件 /home/go/Documents/tutorial/an4/bin/sphinx3_解码

这就是问题的原因。您需要将可执行文件复制到指定位置。然后再次运行解码