Hello guys, I'm trying to the scoring script "score_kaldi.sh". When I ran this script, the following output is shown
steps/score_kaldi.sh --cmd run.pl data/clean exp/tri1/graph exp/tri1/decode_clean
steps/score_kaldi.sh: scoring with word insertion penalty=0.0,0.5,1.0
run.pl: job failed, log is in exp/tri1/decode_clean/scoring_kaldi/log/wer_bootci.log
"exp/tri1/decode_clean/scoring_kaldi/log/wer_bootci.log" contains the following
# compute-wer-bootci ark:exp/tri1/decode_clean/scoring_kaldi/test_filt.txt ark:exp/tri1/decode_clean/scoring_kaldi/penalty_1.0/11.txt > exp/tri1/decode_clean/scoring_kaldi/wer_details/wer_bootci
# Started at Fri Mar 18 19:02:44 EDT 2016
#
bash: line 1: compute-wer-bootci: command not found# Accounting: time=1 threads=1
# Ended (code 32512) at Fri Mar 18 19:02:45 EDT 2016, elapsed time 1 seconds
It seems like it can't find the program called "compute-wer-bootci". I saw a similar looking program called "compute-wer".
Consider the following lines in the "score_kaldi.sh" script where it calls the "compute-wer-bootci".
$cmd $dir/scoring_kaldi/log/wer_bootci.log \
compute-wer-bootci \
ark:$dir/scoring_kaldi/test_filt.txt ark:$dir/scoring_kaldi/penalty_$best_wip/$best_lmwt.txt \
'>' $dir/scoring_kaldi/wer_details/wer_bootci || exit 1;
To sum up, is there a program called "compute-wer-bootci"? Is it possible that "compute-wer" was supposed to be called with option of some sort such as bootci?
I would appreciate your help.