Go to file
liuyibing01 b88f88456b Merge branch 'add_doc_str' into 'master'
Add docstring for WaveFlow

See merge request !34
2020-03-08 15:33:00 +08:00
doc refine doc 2020-03-06 07:42:42 +00:00
examples add docstring 2020-03-07 23:25:04 -08:00
images Add logo parakeet 2020-02-06 12:42:00 +08:00
notebooks fix import errors 2019-11-25 08:53:11 +00:00
parakeet add docstring 2020-03-07 23:25:04 -08:00
tests add license 2020-02-26 21:03:51 +08:00
tools add license 2020-02-26 21:03:51 +08:00
.gitignore move data.py and rename some files 2020-02-16 17:54:11 +00:00
.pre-commit-config.yaml add license 2020-02-26 21:03:51 +08:00
LICENSE Update README 2020-02-27 04:21:52 +00:00
README.md fix conflict 2020-03-05 17:04:08 -08:00
setup.py add license 2020-02-26 21:03:51 +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] (https://arxiv.org/abs/1912.01219) 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] (https://github.com/NVIDIA/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) and comparable to WaveNet (4.6M).
  • 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.

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 1.7 or above.

Install Parakeet

# git clone this repo first
cd Parakeet
pip install -e .

Install CMUdict for nltk

CMUdict from nltk is used to transform text into phonemes.

import nltk
nltk.download("punkt")
nltk.download("cmudict")

Examples

Parakeet is provided under the Apache-2.0 license.