test.sh 1.7 KB
Newer Older
H
Hui Zhang 已提交
1 2
#!/bin/bash

3 4
if [ $# != 3 ];then
    echo "usage: ${0} config_path dict_path ckpt_path_prefix"
H
Hui Zhang 已提交
5 6 7 8 9 10 11 12 13 14 15 16
    exit -1
fi

ngpu=$(echo $CUDA_VISIBLE_DEVICES | awk -F "," '{print NF}')
echo "using $ngpu gpus..."

device=gpu
if [ ${ngpu} == 0 ];then
    device=cpu
fi

config_path=$1
17 18
dict_path=$2
ckpt_prefix=$3
H
Hui Zhang 已提交
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38

chunk_mode=false
if [[ ${config_path} =~ ^.*chunk_.*yaml$ ]];then
    chunk_mode=true
fi
echo "chunk mode ${chunk_mode}"


# download language model
#bash local/download_lm_en.sh
#if [ $? -ne 0 ]; then
#    exit 1
#fi

for type in attention ctc_greedy_search; do
    echo "decoding ${type}"
    if [ ${chunk_mode} == true ];then
        # stream decoding only support batchsize=1
        batch_size=1
    else
H
Hui Zhang 已提交
39
        batch_size=1
H
Hui Zhang 已提交
40 41
    fi
    python3 -u ${BIN_DIR}/test.py \
42 43 44
    --model-name u2_kaldi \
    --run-mode test \
    --dict-path ${dict_path} \
H
Hui Zhang 已提交
45 46 47
    --device ${device} \
    --nproc 1 \
    --config ${config_path} \
48
    --result-file ${ckpt_prefix}.${type}.rsl \
H
Hui Zhang 已提交
49 50 51 52 53 54 55 56 57 58 59 60 61
    --checkpoint_path ${ckpt_prefix} \
    --opts decoding.decoding_method ${type} decoding.batch_size ${batch_size}

    if [ $? -ne 0 ]; then
        echo "Failed in evaluation!"
        exit 1
    fi
done

for type in ctc_prefix_beam_search attention_rescoring; do
    echo "decoding ${type}"
    batch_size=1
    python3 -u ${BIN_DIR}/test.py \
62 63 64
    --model-name u2_kaldi \
    --run-mode test \
    --dict-path ${dict_path} \
H
Hui Zhang 已提交
65 66 67
    --device ${device} \
    --nproc 1 \
    --config ${config_path} \
68
    --result-file ${ckpt_prefix}.${type}.rsl \
H
Hui Zhang 已提交
69 70 71 72 73 74 75 76 77 78 79
    --checkpoint_path ${ckpt_prefix} \
    --opts decoding.decoding_method ${type} decoding.batch_size ${batch_size}

    if [ $? -ne 0 ]; then
        echo "Failed in evaluation!"
        exit 1
    fi
done


exit 0