blob: 4c4e3100243b3941c599f650497a8692959764da (
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/timit/s5/timit_baseline2.lua
decode=/speechlab/users/mfy43/timit/s5/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;
|