30 lines
652 B
Bash
30 lines
652 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
. ../testfuncs.sh
|
||
|
|
||
|
bn=`basename $0 .sh`
|
||
|
|
||
|
echo "Test: $bn"
|
||
|
run_program pocketsphinx_batch \
|
||
|
-hmm $model/hmm/en_US/hub4wsj_sc_8k \
|
||
|
-lm $model/lm/en_US/wsj0vp.5000.DMP \
|
||
|
-dict $model/lm/en_US/cmu07a.dic \
|
||
|
-ctl $data/wsj/test5k.s1.ctl \
|
||
|
-cepdir $data/wsj \
|
||
|
-cepext .mfc \
|
||
|
-hyp $bn.match \
|
||
|
-backtrace yes \
|
||
|
> $bn.log 2>&1
|
||
|
|
||
|
# Test whether it actually completed
|
||
|
if [ $? = 0 ]; then
|
||
|
pass "run"
|
||
|
else
|
||
|
fail "run"
|
||
|
fi
|
||
|
|
||
|
# Check the decoding results
|
||
|
grep AVERAGE $bn.log
|
||
|
$tests/word_align.pl -i $data/wsj/test5k.s1.lsn $bn.match | grep 'TOTAL Percent'
|
||
|
compare_table "match" $data/wsj/$bn.match $bn.match 1000000
|