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.
34 lines
551 B
34 lines
551 B
#!/bin/bash
|
|
|
|
if [ $# != 1 ];then
|
|
echo "usage: tune ckpt_path"
|
|
exit 1
|
|
fi
|
|
|
|
# grid-search for hyper-parameters in language model
|
|
python3 -u ${BIN_DIR}/tune.py \
|
|
--device 'gpu' \
|
|
--nproc 1 \
|
|
--config conf/deepspeech2.yaml \
|
|
--num_batches=-1 \
|
|
--batch_size=128 \
|
|
--beam_size=500 \
|
|
--num_proc_bsearch=12 \
|
|
--num_alphas=45 \
|
|
--num_betas=8 \
|
|
--alpha_from=1.0 \
|
|
--alpha_to=3.2 \
|
|
--beta_from=0.1 \
|
|
--beta_to=0.45 \
|
|
--cutoff_prob=1.0 \
|
|
--cutoff_top_n=40 \
|
|
--checkpoint_path ${1}
|
|
|
|
if [ $? -ne 0 ]; then
|
|
echo "Failed in tuning!"
|
|
exit 1
|
|
fi
|
|
|
|
|
|
exit 0
|