README.md 1.5 KB
Newer Older
H
Hui Zhang 已提交
1
# DeepSpeech on PaddlePaddle
2

L
lfchener 已提交
3 4
[中文版](README_cn.md)

H
Hui Zhang 已提交
5
*DeepSpeech on PaddlePaddle* is an open-source implementation of end-to-end Automatic Speech Recognition (ASR) engine, with [PaddlePaddle](https://github.com/PaddlePaddle/Paddle) platform. Our vision is to empower both industrial application and academic research on speech recognition, via an easy-to-use, efficient and scalable implementation, including training, inference & testing module, and demo deployment.
6 7


H
Hui Zhang 已提交
8 9
## Models
* [Baidu's Deep Speech2](http://proceedings.mlr.press/v48/amodei16.pdf)
10

H
Hui Zhang 已提交
11
## Setup
H
Hui Zhang 已提交
12
* python 3.7
H
Hui Zhang 已提交
13
* paddlepaddle 2.0.0
L
lfchener 已提交
14 15 16 17 18 19

- Run the setup script for the remaining dependencies

```bash
git clone https://github.com/PaddlePaddle/DeepSpeech.git
cd DeepSpeech
H
Hui Zhang 已提交
20 21 22
pushd tools; make; popd
source tools/venv/bin/activate
bash setup.sh
L
lfchener 已提交
23
```
24

H
Hui Zhang 已提交
25
- Source venv before do experiment.
H
Hui Zhang 已提交
26 27

```bash
H
Hui Zhang 已提交
28
source tools/venv/bin/activate
H
Hui Zhang 已提交
29 30
```

31
## Getting Started
32

H
Hui Zhang 已提交
33
Please see [Getting Started](docs/geting_started.md) and [tiny egs](examples/tiny/README.md).
H
Hui Zhang 已提交
34

H
Hui Zhang 已提交
35 36 37 38 39 40 41 42 43 44 45
## More Information  
* [Install](docs/install.md)  
* [Getting Started](docs/geting_stared.md)  
* [Data Prepration](docs/data_preparation.md)  
* [Data Augmentation](docs/augmentation.md)  
* [Ngram LM](docs/ngram_lm.md)  
* [Server Demo](docs/server.md)  
* [Benchmark](docs/benchmark.md)  
* [Relased Model](docs/released_model.md)  
* [FAQ](docs/faq.md)  

H
Hui Zhang 已提交
46

47
## Questions and Help
X
Xinghai Sun 已提交
48

Y
Yibing Liu 已提交
49
You are welcome to submit questions and bug reports in [Github Issues](https://github.com/PaddlePaddle/DeepSpeech/issues). You are also welcome to contribute to this project.