remove unnecessary files

This commit is contained in:
root 2024-05-01 23:03:01 +09:00
parent e5b3b631a8
commit 01325b58c8
3 changed files with 0 additions and 40 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 64 KiB

View File

@ -1,20 +0,0 @@
num_epochs=40
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-large \
--max-duration 600 \
--causal 0 \
--decoding-method greedy_search \
--num-encoder-layers 2,2,4,5,4,2 \
--feedforward-dim 512,768,1536,2048,1536,768 \
--encoder-dim 192,256,512,768,512,256 \
--encoder-unmasked-dim 192,192,256,320,256,192 \
--lang data/lang_char \
--blank-penalty 0
done
done

View File

@ -1,20 +0,0 @@
num_epochs=60
for ((i=$num_epochs; i>=40; i--));
do
for ((j=1; j<=$i; j++));
do
python3 ./zipformer/decode.py \
--epoch $i \
--avg $j \
--exp-dir zipformer/exp-large \
--max-duration 600 \
--causal 0 \
--decoding-method modified_beam_search \
--num-encoder-layers 2,2,4,5,4,2 \
--feedforward-dim 512,768,1536,2048,1536,768 \
--encoder-dim 192,256,512,768,512,256 \
--encoder-unmasked-dim 192,192,256,320,256,192 \
--lang data/lang_char \
--blank-penalty 0
done
done