blob: 0a3e33aa3b2bd07f27923517c75e349ac123115c (
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_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;
|