blob: 7fac918d5472c1adfc61ddc91eb27cdd0f5550a8 (
plain) (
tree)
|
|
#!/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_prepare/
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;
|