icefall/egs/reazonspeech/ASR/decode_modified_beam.sh
2024-01-14 08:05:49 -05:00

15 lines
366 B
Bash
Executable File

num_epochs=30
for ((i=$num_epochs; i>=1; i--));
do
for ((j=1; j<=$i; j++));
do
python3 ./pruned_transducer_stateless7_streaming/decode.py \
--exp-dir exp \
--lang data/lang_char \
--epoch $i \
--avg $j \
--max-duration 180 \
--decoding-method modified_beam_search
done
done