File size: 419 Bytes
9770698 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
export CUDA_VISIBLE_DEVICES=1
for epoch in 29; 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 200 \
--decode-chunk-len 64 \
--decoding-method $m
done
done
done |