README.md 1.0 KB
Newer Older
L
liuyibing01 已提交
1 2 3 4
# Parakeet

Parakeet aims to provide a flexible, efficient and state-of-the-art text-to-speech toolkit for the open-source community. It is built on Paddle Fluid dynamic graph, with the support of many influential TTS models proposed by [Baidu Research](http://research.baidu.com) and other academic institutions.  

Y
Yibing Liu 已提交
5 6 7 8
<div align="center">
  <img src="images/logo.png" width=450 /> <br>
</div>

L
liuyibing01 已提交
9 10
## Installation

11 12 13 14 15 16
### Install Paddlepaddle

See [install](https://www.paddlepaddle.org.cn/install/quick) for more details. This repo requires paddlepaddle's version is above 1.7.

### Install Parakeet

L
liuyibing01 已提交
17
```bash
18 19 20
# git clone this repo first
cd Parakeet
pip install -e .
L
liuyibing01 已提交
21 22
```

23 24 25 26 27 28 29 30
### Install CMUdict for nltk

CMUdict from nltk is used to transform text into phonemes.

```python
import nltk
nltk.download("cmudict")
```
L
liuyibing01 已提交
31 32
## Supported models

33 34 35 36 37
- [Deep Voice 3: Scaling Text-to-Speech with Convolutional Sequence Learning](./parakeet/models/deepvoice3)

## Examples

- [Train a deepvoice 3 model with ljspeech dataset](./parakeet/examples/deepvoice3)