mirror of
https://github.com/k2-fsa/icefall.git
synced 2025-12-11 06:55:27 +00:00
18 lines
496 B
Bash
Executable File
18 lines
496 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-27.pt \
|
|
--exp-dir ./pruned_transducer_stateless_d2v_v2/960h_sweep_v3_388 \
|
|
--max-duration 400 \
|
|
--decoding-method $method \
|
|
--max-sym-per-frame 1 \
|
|
--encoder-type d2v \
|
|
--encoder-dim 768 \
|
|
--decoder-dim 768 \
|
|
--joiner-dim 768
|
|
done
|