icefall/egs/reazonspeech/ASR/decode_greedy.sh
2024-01-23 21:12:17 +09:00

15 lines
340 B
Bash
Executable File

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