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.
24 lines
489 B
24 lines
489 B
#! /usr/bin/env bash
|
|
|
|
# train model
|
|
# if you wish to resume from an exists model, uncomment --init_from_pretrained_model
|
|
export FLAGS_sync_nccl_allreduce=0
|
|
|
|
ngpu=$(echo ${CUDA_VISIBLE_DEVICES} | python -c 'import sys; a = sys.stdin.read(); print(len(a.split(",")));')
|
|
echo "using $ngpu gpus..."
|
|
|
|
python3 -u ${BIN_DIR}/train.py \
|
|
--device 'gpu' \
|
|
--nproc ${ngpu} \
|
|
--config conf/deepspeech2.yaml \
|
|
--output ckpt
|
|
|
|
|
|
if [ $? -ne 0 ]; then
|
|
echo "Failed in training!"
|
|
exit 1
|
|
fi
|
|
|
|
|
|
exit 0
|