|
#!/usr/bin/env bash |
|
|
|
export CUDA_VISIBLE_DEVICES= |
|
|
|
|
|
./pruned_transducer_stateless7_ctc_bs/ctc_guide_decode_bs.py \ |
|
--epoch 30 \ |
|
--avg 13 \ |
|
--exp-dir ./pruned_transducer_stateless7_ctc_bs/exp \ |
|
--max-duration 600 \ |
|
--decoding-method greedy_search |
|
|
|
|
|
./pruned_transducer_stateless7_ctc_bs/ctc_guide_decode_bs.py \ |
|
--epoch 30 \ |
|
--avg 13 \ |
|
--exp-dir ./pruned_transducer_stateless7_ctc_bs/exp \ |
|
--max-duration 600 \ |
|
--decoding-method modified_beam_search \ |
|
--beam-size 4 |
|
|
|
|
|
./pruned_transducer_stateless7_ctc_bs/ctc_guide_decode_bs.py \ |
|
--epoch 30 \ |
|
--avg 13 \ |
|
--exp-dir ./pruned_transducer_stateless7_ctc_bs/exp \ |
|
--max-duration 600 \ |
|
--decoding-method fast_beam_search \ |
|
--beam 20.0 \ |
|
--max-contexts 8 \ |
|
--max-states 64 |