1
2
3
4
5
6
7
8
9
10
11
12
13
| #!/usr/bin/env bash
|
| . ./path.sh || exit 1;
|
| # machines configuration
| CUDA_VISIBLE_DEVICES="0,1,2,3,4,5,6,7"
| gpu_num=8
| count=1
| gpu_inference=true # Whether to perform gpu decoding, set false for cpu decoding
| # for gpu decoding, inference_nj=ngpu*njob; for cpu decoding, inference_nj=njob
| njob=5
| train_cmd=utils/run.pl
| infer_cmd=utils/run.pl
|
|