run.sh 1.1 KB
Newer Older
1 2
#!/bin/bash
set -e
小湉湉's avatar
update  
小湉湉 已提交
3
source path.sh
4

小湉湉's avatar
小湉湉 已提交
5 6
gpus=0,1
stage=0
7
stop_stage=100
8

小湉湉's avatar
小湉湉 已提交
9 10 11 12
conf_path=conf/default.yaml
train_output_path=exp/default
ckpt_name=snapshot_iter_12840.pdz
text=今天的天气真不错啊你下午有空吗我想约你一起去吃饭
13

小湉湉's avatar
小湉湉 已提交
14 15 16 17
# with the following command, you can choose the stage range you want to run
# such as `./run.sh --stage 0 --stop-stage 0`
# this can not be mixed use with `$1`, `$2` ...
source ${MAIN_ROOT}/utils/parse_options.sh || exit 1
18

小湉湉's avatar
小湉湉 已提交
19
if [ ${stage} -le 0 ] && [ ${stop_stage} -ge 0 ]; then
20
    # prepare data
小湉湉's avatar
小湉湉 已提交
21
    ./local/data.sh
22 23
fi

小湉湉's avatar
小湉湉 已提交
24 25 26
if [ ${stage} -le 1 ] && [ ${stop_stage} -ge 1 ]; then
    # train model, all `ckpt` under `train_output_path/checkpoints/` dir
    CUDA_VISIBLE_DEVICES=${gpus} ./local/train.sh ${conf_path} ${train_output_path} || exit -1
27 28
fi

小湉湉's avatar
小湉湉 已提交
29 30
if [ ${stage} -le 2 ] && [ ${stop_stage} -ge 2 ]; then
   CUDA_VISIBLE_DEVICES=${gpus} ./local/test.sh ${conf_path} ${train_output_path} ${ckpt_name} || exit -1
31 32
fi

小湉湉's avatar
小湉湉 已提交
33 34 35
if [ ${stage} -le 3 ] && [ ${stop_stage} -ge 3 ]; then
   CUDA_VISIBLE_DEVICES=${gpus} ./local/punc_restore.sh ${conf_path} ${train_output_path} ${ckpt_name} ${text}|| exit -1
fi