mirror of
https://github.com/k2-fsa/icefall.git
synced 2025-08-27 10:44:19 +00:00
15 lines
359 B
Bash
Executable File
15 lines
359 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 greedy_search
|
|
done
|
|
done
|