You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
PaddleSpeech/text_processing/examples/punctuation_restoration/english/local/data.sh

19 lines
236 B

#!/bin/bash
if [ $# != 1 ];then
echo "usage: ${0} config_path"
exit -1
fi
config_path=$1
python3 -u ${BIN_DIR}/pre_data.py \
--config ${config_path}
if [ $? -ne 0 ]; then
echo "Failed in training!"
exit 1
fi
exit 0