README.md 1.2 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

H
Hui Zhang 已提交
7
For more information, please docs under `doc`.
8

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

H
Hui Zhang 已提交
12 13 14
## Setup
* python3.7
* paddlepaddle 2.0.0
L
lfchener 已提交
15 16 17 18 19 20

- Run the setup script for the remaining dependencies

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

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

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

32
## Getting Started
33

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

36
## Questions and Help
X
Xinghai Sun 已提交
37

Y
Yibing Liu 已提交
38
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.