Kaldi 报错:queue.pl: Error submitting jobs to queue (return status was 32512)

在kaldi里面跑demo的时候提示,

queue.pl: Error submitting jobs to queue (return status was 32512)
queue log file is exp/make_mfcc/train/q/make_mfcc_train.log, command was qsub -v PATH -cwd -S /bin/bash -j y -l arch=*64* -o exp/make_mfcc/train/q/make_mfcc_train.log   -t 1:2 /home/fyan/Kaldi/kaldi-trunnk/egs/thchs30/s5/exp/make_mfcc/train/q/make_mfcc_train.sh >>exp/make_mfcc/train/q/make_mfcc_train.log 2>&1
Output of qsub was: sh: 1: qsub: not found

网上看到的方法就是修改cmd.sh文件内容:

  1 # you can change cmd.sh depending on what type of queue you are using.
  2 # If you have no queueing system and want to run on a local machine, you
  3 # can change all instances 'queue.pl' to run.pl (but be careful and run
  4 # commands one by one: most recipes will exhaust the memory on your
  5 # machine).  queue.pl works with GridEngine (qsub).  slurm.pl works
  6 # with slurm.  Different queues are configured differently, with different
  7 # queue names and different ways of specifying things like memory;
  8 # to account for these differences you can create and edit the file
  9 # conf/queue.conf to match your queue's configuration.  Search for
 10 # conf/queue.conf in http://kaldi-asr.org/doc/queue.html for more information,
 11 # or search for the string 'default_config' in utils/queue.pl or utils/slurm.pl.
 12 
 13 #export train_cmd=queue.pl
 14 #export decode_cmd="queue.pl --mem 4G"
 15 #export mkgraph_cmd="queue.pl --mem 8G"
 16 #export cuda_cmd="queue.pl --gpu 1"
 17 export train_cmd=run.pl
 18 export decode_cmd=run.pl
 19 export mkgraph_cmd="run.pl"

修改前之后注释掉的命令行,按照提示将queue.pl均修改为run.pl就ok了。

 

 

 

 

你可能感兴趣的:(Kaldi)