README.md 849 字节
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 11
## Installation

```bash
12 13 14
# git clone this repo first
cd Parakeet
pip install -e .
L
liuyibing01 已提交
15 16
```

17 18 19 20 21 22 23 24
### Install CMUdict for nltk

CMUdict from nltk is used to transform text into phonemes.

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

27 28 29 30 31
- [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)