forked from Gastron/sb-libri-hmmdnn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cmd.sh
executable file
·19 lines (17 loc) · 1.08 KB
/
cmd.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# you can change cmd.sh depending on what type of queue you are using.
# If you have no queueing system and want to run on a local machine, you
# can change all instances 'queue.pl' to run.pl (but be careful and run
# commands one by one: most recipes will exhaust the memory on your
# machine). queue.pl works with GridEngine (qsub). slurm.pl works
# with slurm. Different queues are configured differently, with different
# queue names and different ways of specifying things like memory;
# to account for these differences you can create and edit the file
# conf/queue.conf to match your queue's configuration. Search for
# conf/queue.conf in http://kaldi-asr.org/doc/queue.html for more information,
# or search for the string 'default_config' in utils/queue.pl or utils/slurm.pl.
export basic_cmd="slurm.pl --mem 4G --time 04:00:00"
export train_cmd="slurm.pl --mem 4G --time 04:00:00"
export gmm_cmd="slurm.pl --mem 4G --time 1:30:00"
export egs_cmd="slurm.pl --mem 2G --time 8:0:0"
export nnet_cmd="slurm.pl --gpu 1 --mem 4G --time 00:10:00"
export varikn_cmd="slurm.pl --mem 16G --time 04:00:00"