mirror of
https://github.com/k2-fsa/icefall.git
synced 2025-12-11 06:55:27 +00:00
20 lines
509 B
Bash
Executable File
20 lines
509 B
Bash
Executable File
git pull
|
|
|
|
for method in greedy_search modified_beam_search fast_beam_search; do
|
|
./pruned_transducer_stateless_d2v/decode.py \
|
|
--input-strategy AudioSamples \
|
|
--enable-spec-aug False \
|
|
--additional-block True \
|
|
--epoch 14 \
|
|
--avg 1 \
|
|
--exp-dir ./pruned_transducer_stateless_d2v/test \
|
|
--max-duration 800 \
|
|
--decoding-method $method \
|
|
--max-sym-per-frame 1 \
|
|
--encoder-type d2v \
|
|
--encoder-dim 768 \
|
|
--decoder-dim 768 \
|
|
--joiner-dim 768 \
|
|
--use-averaged-model False
|
|
done
|