diff options
author | Ted Yin <[email protected]> | 2015-10-14 15:43:43 +0800 |
---|---|---|
committer | Ted Yin <[email protected]> | 2015-10-14 15:43:43 +0800 |
commit | fd2148540efd7a5e5e2c054280d53d3eb3b055cc (patch) | |
tree | 47501412a3324e4c13b1238eeb913aae02b2024a /kaldi_decode/cmd.sh | |
parent | 0dba4c998fcccb4bae29582b7d8be94de476dd0b (diff) | |
parent | b33b3a6732c6b6a66bd5c44c615be56d66f4ed67 (diff) |
Merge pull request #7 from yimmon/master
support kaldi decoder
Diffstat (limited to 'kaldi_decode/cmd.sh')
-rwxr-xr-x | kaldi_decode/cmd.sh | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/kaldi_decode/cmd.sh b/kaldi_decode/cmd.sh new file mode 100755 index 0000000..e2e54e8 --- /dev/null +++ b/kaldi_decode/cmd.sh @@ -0,0 +1,36 @@ +#!/bin/bash +# "queue.pl" uses qsub. The options to it are +# options to qsub. If you have GridEngine installed, +# change this to a queue you have access to. +# Otherwise, use "run.pl", which will run jobs locally +# (make sure your --num-jobs options are no more than +# the number of cpus on your machine. + +#a) JHU cluster options +#export train_cmd="queue.pl -l arch=*64" +#export decode_cmd="queue.pl -l arch=*64,mem_free=2G,ram_free=2G" +#export mkgraph_cmd="queue.pl -l arch=*64,ram_free=4G,mem_free=4G" + +#export cuda_cmd="..." + + +#b) BUT cluster options +#export train_cmd="queue.pl -q all.q@@blade -l ram_free=1200M,mem_free=1200M" +#export decode_cmd="queue.pl -q all.q@@blade -l ram_free=1700M,mem_free=1700M" +#export decodebig_cmd="queue.pl -q all.q@@blade -l ram_free=4G,mem_free=4G" + +#export cuda_cmd="queue.pl -q long.q@@pco203 -l gpu=1" +#export cuda_cmd="queue.pl -q long.q@pcspeech-gpu" +#export mkgraph_cmd="queue.pl -q all.q@@servers -l ram_free=4G,mem_free=4G" + +#c) run it locally... +export train_cmd=run.pl +export decode_cmd=run.pl +export cuda_cmd=run.pl +export mkgraph_cmd=run.pl + +#export train_cmd='queue.pl' +#export decode_cmd='queue.pl' +#export cuda_cmd='queue.pl -l gpu=1 -l hostname="markov|date|hamming"' +#export mkgraph_cmd='queue.pl"' + |