2022-12-30 11:27:24 +09:00

18 lines
497 B
Bash
Executable File

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 epoch-10.pt \
--exp-dir ./pruned_transducer_stateless_d2v_v2/d2v-T-adapter_male \
--max-duration 400 \
--decoding-method $method \
--max-sym-per-frame 1 \
--encoder-type d2v \
--encoder-dim 768 \
--decoder-dim 768 \
--joiner-dim 768
done