Parakeet/README.md

76 lines
3.1 KiB
Markdown
Raw Normal View History

2019-11-13 22:22:46 +08:00
# Parakeet
2020-03-05 08:47:07 +08:00
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 PaddlePaddle Fluid dynamic graph and includes many influential TTS models proposed by [Baidu Research](http://research.baidu.com) and other research groups.
2020-03-05 10:40:42 +08:00
<div align="center">
2021-01-18 13:08:03 +08:00
<img src="images/logo.png" width=300 /> <br>
2020-03-05 10:40:42 +08:00
</div>
2020-03-10 17:43:00 +08:00
In particular, it features the latest [WaveFlow](https://arxiv.org/abs/1912.01219) model proposed by Baidu Research.
2020-03-10 01:53:24 +08:00
2020-03-10 17:43:00 +08:00
- WaveFlow can synthesize 22.05 kHz high-fidelity speech around 40x faster than real-time on a Nvidia V100 GPU without engineered inference kernels, which is faster than [WaveGlow](https://github.com/NVIDIA/waveglow) and serveral orders of magnitude faster than WaveNet.
2020-03-10 12:55:12 +08:00
- WaveFlow is a small-footprint flow-based model for raw audio. It has only 5.9M parameters, which is 15x smalller than WaveGlow (87.9M).
- WaveFlow is directly trained with maximum likelihood without probability density distillation and auxiliary losses as used in Parallel WaveNet and ClariNet, which simplifies the training pipeline and reduces the cost of development.
2020-03-05 09:46:03 +08:00
2020-03-10 01:53:24 +08:00
## Overview
2020-03-10 17:02:45 +08:00
In order to facilitate exploiting the existing TTS models directly and developing the new ones, Parakeet selects typical models and provides their reference implementations in PaddlePaddle. Further more, Parakeet abstracts the TTS pipeline and standardizes the procedure of data preprocessing, common modules sharing, model configuration, and the process of training and synthesis. The models supported here include Vocoders and end-to-end TTS models:
2020-03-10 01:53:24 +08:00
- Vocoders
- [WaveFlow: A Compact Flow-based Model for Raw Audio](https://arxiv.org/abs/1912.01219)
- [WaveNet: A Generative Model for Raw Audio](https://arxiv.org/abs/1609.03499)
- TTS models
- [Neural Speech Synthesis with Transformer Network (Transformer TTS)](https://arxiv.org/abs/1809.08895)
2021-01-18 13:08:03 +08:00
- [Natural TTS Synthesis by Conditioning WaveNet on Mel Spectrogram Predictions](arxiv.org/abs/1712.05884)
2020-03-10 01:53:24 +08:00
And more will be added in the future.
## Setup
2020-02-25 14:39:43 +08:00
2020-03-05 08:47:07 +08:00
Make sure the library `libsndfile1` is installed, e.g., on Ubuntu.
2020-02-25 14:39:43 +08:00
```bash
sudo apt-get install libsndfile1
```
2019-11-13 22:22:46 +08:00
2020-02-25 14:39:43 +08:00
### Install PaddlePaddle
2021-01-18 13:08:03 +08:00
See [install](https://www.paddlepaddle.org.cn/install/quick) for more details. This repo requires PaddlePaddle **2.0.0.rc1** or above.
### Install Parakeet
2021-01-18 13:08:03 +08:00
```bash
pip install -U paddle-parakeet
```
2021-01-18 13:08:03 +08:00
or
2019-11-13 22:22:46 +08:00
```bash
2020-03-10 01:53:24 +08:00
git clone https://github.com/PaddlePaddle/Parakeet
cd Parakeet
pip install -e .
2019-11-13 22:22:46 +08:00
```
2021-01-18 13:08:03 +08:00
See [install](https://paddle-parakeet.readthedocs.io/en/latest/install.html) for more details.
## Examples
2020-03-10 01:53:24 +08:00
Entries to the introduction, and the launch of training and synthsis for different example models:
- [>>> WaveFlow](./examples/waveflow)
- [>>> WaveNet](./examples/wavenet)
- [>>> Transformer TTS](./examples/transformer_tts)
2021-01-18 13:08:03 +08:00
- [>>> Tacotron2](./examples/tacotron2)
2020-03-10 01:53:24 +08:00
2021-01-18 13:08:03 +08:00
## Audio samples
2020-03-10 01:53:24 +08:00
2021-01-18 13:08:03 +08:00
### TTS models (Acoustic Model + Neural Vocoder)
2020-03-10 01:53:24 +08:00
2021-01-18 13:08:03 +08:00
Check our [website](https://paddle-parakeet.readthedocs.io/en/latest/demo.html) for audio sampels.
2020-02-27 12:21:52 +08:00
## Copyright and License
Parakeet is provided under the [Apache-2.0 license](LICENSE).