from local

This commit is contained in:
dohe0342 2023-01-30 16:29:14 +09:00
parent 68fb0dea20
commit 63745b578c
2 changed files with 20 additions and 0 deletions

Binary file not shown.

20
egs/librispeech/ASR/pseudo.sh Executable file
View File

@ -0,0 +1,20 @@
git pull
for method in greedy_search #modified_beam_search fast_beam_search
do
./pruned_transducer_stateless_d2v_v2/decode.py \
--input-strategy AudioSamples \
--enable-spec-aug False \
--additional-block True \
--model-name d2v-base-T.pt \
--exp-dir ./pruned_transducer_stateless_d2v_v2 \
--max-duration 600 \
--decoding-method $method \
--max-sym-per-frame 1 \
--encoder-type d2v \
--encoder-dim 768 \
--decoder-dim 768 \
--joiner-dim 768 \
--avg 1 \
--use-averaged-model True
done