Blame view
egs/sprakbanken/s5/local/run_nnet2.sh
499 Bytes
8dcb6dfcb first commit |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
#!/bin/bash . ./cmd.sh # This shows what you can potentially run; you'd probably want to pick and choose. use_gpu=true if $use_gpu; then local/nnet2/run_5b_gpu.sh # various VTLN combinations, Mel-filterbank features, si284 train (multiplied by 5). local/nnet2/run_5c_gpu.sh # this is on top of fMLLR features. else local/nnet2/run_5b.sh # various VTLN combinations, Mel-filterbank features, si284 train (multiplied by 5). local/nnet2/run_5c.sh # this is on top of fMLLR features. fi |