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.
28 lines
670 B
28 lines
670 B
#! /usr/bin/bash
|
|
|
|
pushd ../..
|
|
|
|
CUDA_VISIBLE_DEVICES=0 \
|
|
python -u infer.py \
|
|
--num_samples=4 \
|
|
--trainer_count=1 \
|
|
--beam_size=500 \
|
|
--num_proc_bsearch=12 \
|
|
--num_conv_layers=2 \
|
|
--num_rnn_layers=3 \
|
|
--rnn_layer_size=2048 \
|
|
--alpha=0.36 \
|
|
--beta=0.25 \
|
|
--cutoff_prob=0.99 \
|
|
--use_gru=False \
|
|
--use_gpu=True \
|
|
--share_rnn_weights=True \
|
|
--infer_manifest='data/tiny/manifest.train' \
|
|
--mean_std_path='data/tiny/mean_std.npz' \
|
|
--vocab_path='data/tiny/vocab.txt' \
|
|
--model_path='checkpoints/params.pass-14.tar.gz' \
|
|
--lang_model_path='models/lm/common_crawl_00.prune01111.trie.klm' \
|
|
--decoding_method='ctc_beam_search' \
|
|
--error_rate_type='wer' \
|
|
--specgram_type='linear'
|