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 git pull
for i in 10 20 30 40 50 for i in 10 20 30 40 50
for method in greedy_search #modified_beam_search fast_beam_search
do do
./pruned_transducer_stateless_d2v_v2/decode.py \ for method in greedy_search #modified_beam_search fast_beam_search
--input-strategy AudioSamples \ do
--enable-spec-aug False \ ./pruned_transducer_stateless_d2v_v2/decode.py \
--additional-block True \ --input-strategy AudioSamples \
--model-name epoch-10.pt \ --enable-spec-aug False \
--exp-dir ./pruned_transducer_stateless_d2v_v2/6938_test \ --additional-block True \
--max-duration 600 \ --model-name epoch-10.pt \
--decoding-method $method \ --exp-dir ./pruned_transducer_stateless_d2v_v2/6938_test \
--max-sym-per-frame 1 \ --max-duration 600 \
--encoder-type d2v \ --decoding-method $method \
--encoder-dim 768 \ --max-sym-per-frame 1 \
--decoder-dim 768 \ --encoder-type d2v \
--joiner-dim 768 \ --encoder-dim 768 \
--avg 1 \ --decoder-dim 768 \
--use-averaged-model True --joiner-dim 768 \
--avg 1 \
--use-averaged-model True
done
done done