我在语音识别的解码部分的问题。 我跟着步骤这里 。 当我键入: perl scripts_pl/decode/slave.pl
,我得到这些错误:
模块:使用之前训练的解码130段从0开始(部分1)无法找到可执行文件中的/ home /去/文档/教程/ AN4 /斌/ sphinx3_decode通过/ home /去/文档/教程/ AN4车型DECODE解码/scripts_pl/decode/../lib/SphinxTrain/Util.pm线299对齐结果中找到错误率无法打开/home/go/Documents/tutorial/an4/result/an4-1-1.match word_align。 PL在scripts_pl /解码/ slave.pl 173线失败,错误代码65280。
这里是word_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;
}
#}
和Util.pm
线299
死“找不到可执行文件$ CMD”除非-e $ CMD;
为什么我错过了an4-1-1.match file
?