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.
|
#! /usr/bin/env bash
|
|
|
|
export FLAGS_sync_nccl_allreduce=0
|
|
|
|
python3 -u ${BIN_DIR}/train.py \
|
|
--device 'gpu' \
|
|
--nproc 1 \
|
|
--config conf/deepspeech2.yaml \
|
|
--output ckpt
|
|
|
|
if [ $? -ne 0 ]; then
|
|
echo "Failed in training!"
|
|
exit 1
|
|
fi
|
|
|
|
|
|
exit 0
|