from local

This commit is contained in:
dohe0342 2023-01-30 16:59:44 +09:00
parent e0cb84a967
commit 02c3c9b8f3
2 changed files with 18 additions and 16 deletions

Binary file not shown.

View File

@ -1,21 +1,23 @@
git pull
for i in 10 20 30 40 50
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 epoch-10.pt \
--exp-dir ./pruned_transducer_stateless_d2v_v2/6938_test \
--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
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 epoch-10.pt \
--exp-dir ./pruned_transducer_stateless_d2v_v2/6938_test \
--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
done