mirror of
https://github.com/k2-fsa/icefall.git
synced 2025-08-27 02:34:21 +00:00
all combinations of epochs and avgs
This commit is contained in:
parent
77178c6311
commit
a8e9dc2488
14
egs/reazonspeech/ASR/decode_greedy.sh
Executable file
14
egs/reazonspeech/ASR/decode_greedy.sh
Executable file
@ -0,0 +1,14 @@
|
|||||||
|
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
|
14
egs/reazonspeech/ASR/decode_modified_beam.sh
Executable file
14
egs/reazonspeech/ASR/decode_modified_beam.sh
Executable file
@ -0,0 +1,14 @@
|
|||||||
|
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 modified_beam_search
|
||||||
|
done
|
||||||
|
done
|
Loading…
x
Reference in New Issue
Block a user