Go to file
liuyibing01 c810588a35 Update README 2020-02-27 04:21:52 +00:00
examples refactor wavenet 2020-02-26 15:06:48 +00: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 refactor wavenet 2020-02-26 15:06:48 +00: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 Update README 2020-02-27 04:21:52 +00: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 Paddle Fluid dynamic graph, with the support of many influential TTS models proposed by Baidu Research and other academic institutions.


Setup

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

sudo apt-get install libsndfile1

Install PaddlePaddle

See install for more details. This repo requires paddlepaddle's version is above 1.7.

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.