Skip to content

Commit

Permalink
Added results and updated MMI SAT training
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.code.sf.net/p/kaldi/code/sandbox/nshmyrev@3854 5e6a8d80-dfce-4ca6-a32a-6e07a63d50c8
  • Loading branch information
nshmyrev committed Apr 7, 2014
1 parent 803d345 commit dc3e618
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 4 deletions.
12 changes: 12 additions & 0 deletions egs/tedlium/s5/RESULTS
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/bin/bash

for x in exp/*/decode*; do [ -d $x ] && grep WER $x/wer_* | utils/best_wer.sh; done
exit 0


%WER 35.17 [ 9677 / 27512, 1267 ins, 1681 del, 6729 sub ] exp/tri1/decode/wer_13
%WER 30.03 [ 8262 / 27512, 1255 ins, 1367 del, 5640 sub ] exp/tri2/decode/wer_15
%WER 24.99 [ 6876 / 27512, 1314 ins, 1015 del, 4547 sub ] exp/tri3/decode/wer_14
%WER 30.10 [ 8281 / 27512, 1257 ins, 1368 del, 5656 sub ] exp/tri3/decode.si/wer_16
%WER 21.31 [ 5863 / 27512, 1121 ins, 875 del, 3867 sub ] exp/tri3_mmi_b0.1/decode_it4/wer_12

8 changes: 4 additions & 4 deletions egs/tedlium/s5/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
. path.sh

nj=8
decode_nj=4
decode_nj=2

# Data prep

Expand Down Expand Up @@ -66,14 +66,14 @@ steps/decode_fmllr.sh --nj $decode_nj --cmd "$decode_cmd" \
steps/align_fmllr.sh --nj $nj --cmd "$train_cmd" \
data/train data/lang exp/tri3 exp/tri3_ali

steps/make_denlats.sh --nj $nj --cmd "$decode_cmd" \
steps/make_denlats.sh --transform-dir exp/tri3_ali --nj $nj --cmd "$decode_cmd" \
data/train data/lang exp/tri3 exp/tri3_denlats

steps/train_mmi.sh --cmd "$train_cmd" --boost 0.1 \
data/train data/lang exp/tri3_ali exp/tri3_denlats \
exp/tri3_mmi_b0.1

for iter in 3 4; do
steps/decode.sh --nj $decode_nj --cmd "$decode_cmd" --iter $iter \
for iter in 4; do
steps/decode.sh --transform-dir exp/tri3/decode --nj $decode_nj --cmd "$decode_cmd" --iter $iter \
exp/tri3/graph data/test exp/tri3_mmi_b0.1/decode_it$iter
done

0 comments on commit dc3e618

Please sign in to comment.