Zengwei's picture
upload files
89beb88
raw
history blame
422 Bytes
export CUDA_VISIBLE_DEVICES=1
for epoch in 30; do
for avg in 9; do
for m in greedy_search modified_beam_search fast_beam_search; do
./pruned_transducer_stateless7_streaming/decode.py \
--epoch $epoch \
--avg $avg \
--exp-dir ./pruned_transducer_stateless7_streaming/exp \
--max-duration 600 \
--decode-chunk-len 64 \
--decoding-method $m
done
done
done