Почему в этом коде распознавания речи отсутствует файл an4-1-1.match?

У меня проблемы с декодированием части распознавания речи. Я следовал за шагамиВот, Когда я печатаю:perl scripts_pl/decode/slave.plЯ получаю эти ошибки:

MODULE: DECODE Decoding using models previously trained Decoding 130 segments starting at 0 (part 1 of 1) Could not find executable for /home/go/Documents/tutorial/an4/bin/sphinx3_decode at /home/go/Documents/tutorial/an4/scripts_pl/decode/../lib/SphinxTrain/Util.pm line 299. Aligning results to find error rate Can't open /home/go/Documents/tutorial/an4/result/an4-1-1.match word_align.pl failed with error code 65280 at scripts_pl/decode/slave.pl line 173.

Вот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

die "Could not find executable for $cmd" unless -e $cmd;

Почему я скучаю поan4-1-1.match file?

Ответы на вопрос(1)

Ваш ответ на вопрос