shaojieli's picture
Create decode.sh (#1)
673b2a9
raw
history blame
No virus
420 Bytes
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