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.
22 lines
505 B
22 lines
505 B
#!/usr/bin/env bash
|
|
|
|
if [ ! -d kenlm ]; then
|
|
git clone https://github.com/luotao1/kenlm.git
|
|
echo -e "\n"
|
|
fi
|
|
|
|
if [ ! -d openfst-1.6.3 ]; then
|
|
echo "Download and extract openfst ..."
|
|
wget http://www.openfst.org/twiki/pub/FST/FstDownload/openfst-1.6.3.tar.gz
|
|
tar -xzvf openfst-1.6.3.tar.gz
|
|
echo -e "\n"
|
|
fi
|
|
|
|
if [ ! -d ThreadPool ]; then
|
|
git clone https://github.com/progschj/ThreadPool.git
|
|
echo -e "\n"
|
|
fi
|
|
|
|
echo "Install decoders ..."
|
|
python setup.py install --num_processes 4
|