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.
41 lines
977 B
41 lines
977 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
|
|
CUDA_VISIBLE_DEVICES=0,1,2,3,4,5,6,7 \
|
|
python3 -u ${MAIN_ROOT}/train.py \
|
|
--batch_size=64 \
|
|
--num_epoch=50 \
|
|
--num_conv_layers=2 \
|
|
--num_rnn_layers=3 \
|
|
--rnn_layer_size=1024 \
|
|
--num_iter_print=100 \
|
|
--save_epoch=1 \
|
|
--num_samples=120000 \
|
|
--learning_rate=5e-4 \
|
|
--max_duration=27.0 \
|
|
--min_duration=0.0 \
|
|
--test_off=False \
|
|
--use_sortagrad=True \
|
|
--use_gru=True \
|
|
--use_gpu=True \
|
|
--is_local=True \
|
|
--share_rnn_weights=False \
|
|
--train_manifest="data/manifest.train" \
|
|
--dev_manifest="data/manifest.dev" \
|
|
--mean_std_path="data/mean_std.npz" \
|
|
--vocab_path="data/vocab.txt" \
|
|
--output_model_dir="./checkpoints" \
|
|
--augment_conf_path="${MAIN_ROOT}/conf/augmentation.config" \
|
|
--specgram_type="linear" \
|
|
--shuffle_method="batch_shuffle_clipped" \
|
|
|
|
if [ $? -ne 0 ]; then
|
|
echo "Failed in training!"
|
|
exit 1
|
|
fi
|
|
|
|
|
|
exit 0
|