summaryrefslogtreecommitdiff
path: root/kaldi_decode/README.timit
blob: 0a3e33aa3b2bd07f27923517c75e349ac123115c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash
source path.sh
source cmd.sh

gmmdir=/speechlab/users/mfy43/timit/s5/exp/tri3/
data_fmllr=/speechlab/users/mfy43/timit/s5/data-fmllr-tri3/
dir=/speechlab/users/mfy43/timit/s5/exp/dnn4_nerv_dnn/
nerv_config=/speechlab/users/mfy43/nerv/nerv/examples/timit_baseline2.lua
decode=/speechlab/users/mfy43/nerv/install/bin/decode_with_nerv.sh

# Decode (reuse HCLG graph)
$decode --nj 20 --cmd "$decode_cmd" --acwt 0.2 \
    $gmmdir/graph $data_fmllr/test $nerv_config $dir/decode_test || exit 1;
$decode --nj 20 --cmd "$decode_cmd" --acwt 0.2 \
    $gmmdir/graph $data_fmllr/dev $nerv_config $dir/decode_dev || exit 1;