add setup and README for deployment

pull/2/head
Yibing Liu 8 years ago
parent 94a6811660
commit 5bfa066920

@ -0,0 +1,38 @@
### Installation
The setup of the decoder for deployment depends on the source code of [kenlm](https://github.com/kpu/kenlm/), first clone it to current directory (i.e., `deep_speech_2/deploy`)
```shell
git clone https://github.com/kpu/kenlm.git
```
Then run the setup
```shell
sh setup.sh
```
After the installation succeeds, go back to the parent directory
```
cd ..
```
### Deployment
For GPU deployment
```
CUDA_VISIBLE_DEVICES=0 python deploy.py
```
For CPU deployment
```
python deploy.py --use_gpu=False
```
More help for arguments
```
python deploy.py --help
```

@ -0,0 +1,11 @@
echo "Run decoder setup ..."
python decoder_setup.py install
rm -r ./build
echo "\nRun scorer setup ..."
python scorer_setup.py install
rm -r ./build
echo "\nFinish the installation of decoder and scorer."
Loading…
Cancel
Save