desh2608's picture
upload pretrained model
564731a
raw
history blame
336 Bytes
export CUDA_VISIBLE_DEVICES="0"
for m in greedy_search beam_search fast_beam_search modified_beam_search; do
./zipformer/decode.py \
--epoch 50 \
--avg 22 \
--use-averaged-model True \
--exp-dir zipformer/exp \
--max-duration 500 \
--causal 0 \
--decoding-method $m \
--beam-size 4
done