run_demo_server.sh 1.1 KB
Newer Older
1
#! /usr/bin/env bash
2 3
# TODO: replace the model with a mandarin model

Y
Yibing Liu 已提交
4
cd ../.. > /dev/null
5 6

# download language model
Y
Yibing Liu 已提交
7
cd models/lm > /dev/null
8 9 10 11
sh download_lm_en.sh
if [ $? -ne 0 ]; then
    exit 1
fi
Y
Yibing Liu 已提交
12
cd - > /dev/null
13 14 15


# download well-trained model
Y
Yibing Liu 已提交
16
cd models/librispeech > /dev/null
17 18 19 20
sh download_model.sh
if [ $? -ne 0 ]; then
    exit 1
fi
Y
Yibing Liu 已提交
21
cd - > /dev/null
22 23 24 25 26 27 28 29 30 31 32 33 34


# start demo server
CUDA_VISIBLE_DEVICES=0 \
python -u deploy/demo_server.py \
--host_ip='localhost' \
--host_port=8086 \
--num_conv_layers=2 \
--num_rnn_layers=3 \
--rnn_layer_size=2048 \
--alpha=0.36 \
--beta=0.25 \
--cutoff_prob=0.99 \
35
--cutoff_top_n=40 \
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
--use_gru=False \
--use_gpu=True \
--share_rnn_weights=True \
--speech_save_dir='demo_cache' \
--warmup_manifest='data/tiny/manifest.test-clean' \
--mean_std_path='models/librispeech/mean_std.npz' \
--vocab_path='models/librispeech/vocab.txt' \
--model_path='models/librispeech/params.tar.gz' \
--lang_model_path='models/lm/common_crawl_00.prune01111.trie.klm' \
--decoding_method='ctc_beam_search' \
--specgram_type='linear'

if [ $? -ne 0 ]; then
    echo "Failed in starting demo server!"
    exit 1
fi


exit 0