Go to file
chenfeiyu 0af7402daa add rank_zero_only for ExperimentBase.save 2021-02-18 19:33:41 +08:00
docs fix typos 2021-01-18 15:15:49 +08:00
docs_cn rename doc folder 2021-01-13 20:30:51 +08:00
examples fix a bug when using a method other than forward with DataParallel 2021-01-11 17:24:46 +08:00
images add documentation sections 2021-01-13 11:06:15 +08:00
parakeet add rank_zero_only for ExperimentBase.save 2021-02-18 19:33:41 +08:00
tools add license 2020-02-26 21:03:51 +08:00
.gitignore add datasets 2020-11-19 20:43:03 +08:00
.pre-commit-config.yaml add license 2020-02-26 21:03:51 +08:00
.readthedocs.yml add paddlepaddle into requirements for readthedocs 2021-01-14 15:30:31 +08:00
LICENSE Update README & LICENSE 2020-03-10 16:41:10 +08:00
README.md fix typos 2021-01-18 15:15:49 +08:00
README_cn.md format all the code with yapf 2020-12-20 13:15:07 +08:00
setup.py use markdown format in long description 2020-12-20 14:35:00 +08:00

README.md

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 PaddlePaddle Fluid dynamic graph and includes many influential TTS models proposed by Baidu Research and other research groups.


In particular, it features the latest WaveFlow model proposed by Baidu Research.

  • 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 and serveral orders of magnitude faster than WaveNet.
  • 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.

Overview

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:

And more will be added in the future.

Setup

Make sure the library libsndfile1 is installed, e.g., on Ubuntu.

sudo apt-get install libsndfile1

Install PaddlePaddle

See install for more details. This repo requires PaddlePaddle 2.0.0rc1 or above.

Install Parakeet

pip install -U paddle-parakeet

or

git clone https://github.com/PaddlePaddle/Parakeet
cd Parakeet
pip install -e .

See install for more details.

Examples

Entries to the introduction, and the launch of training and synthsis for different example models:

Audio samples

TTS models (Acoustic Model + Neural Vocoder)

Check our website for audio sampels.

Parakeet is provided under the Apache-2.0 license.