Go to file
TianYuan 7334e1dcc5
Merge pull request #164 from PaddlePaddle/doc2
refactor doc and readme
2021-09-07 13:21:29 +08:00
.pre-commit-hooks format 2021-08-17 09:54:07 +00:00
docs refactor doc and readme 2021-09-07 12:34:57 +08:00
examples update readme 2021-09-06 12:10:01 +00:00
parakeet fix log format of fastspeech2 speedyspeech and pwg 2021-09-03 11:21:52 +00:00
tests add ci/ce scripts 2021-09-02 18:08:27 +08:00
tools add ge2e and tacotron2_aishell3 example (#107) 2021-05-13 17:49:50 +08:00
utils add aishell3 example 2021-08-25 09:37:16 +00:00
.clang-format format 2021-08-17 09:54:07 +00:00
.flake8 fix init import bug 2021-08-26 03:14:24 +00:00
.gitignore WIP: training setup done 2021-06-13 17:24:15 +08:00
.pre-commit-config.yaml format 2021-08-17 09:54:07 +00:00
.readthedocs.yml add paddlepaddle into requirements for readthedocs 2021-01-14 15:30:31 +08:00
.style.yapf format 2021-08-17 09:54:07 +00:00
LICENSE Update README & LICENSE 2020-03-10 16:41:10 +08:00
README.md refactor doc and readme 2021-09-07 12:34:57 +08:00
README_cn.md format all the code with yapf 2020-12-20 13:15:07 +08:00
setup.py fix dl 2021-08-27 10:42:08 +00: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 dynamic graph and includes many influential TTS models.


News

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 Text FrontEnd, end-to-end Acoustic models and Vocoders:

  • Text FrontEnd
    • Rule based frontend.

Setup

It's difficult to install some dependent libraries for this repo in Windows system, we recommend that you DO NOT use Windows system, please use Linux.

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

Install Parakeet

pip install -U paddle-parakeet

or

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

If some python dependent packages cannot be installed successfully, you can run the following script first. (replace python3.6 with your own python version)

sudo apt install -y python3.6-dev

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.

Released Model

AM

FastSpeech2

  1. fastspeech2_nosil_baker_ckpt_0.4.zip
  2. fastspeech2_nosil_aishell3_ckpt_0.4.zip

SpeedySpeech

  1. speedyspeech_baker_ckpt_0.4.zip

TransformerTTS

  1. transformer_tts_ljspeech_ckpt_0.3.zip

Tacotron2

  1. tacotron2_ljspeech_ckpt_0.3.zip
  2. tacotron2_ljspeech_ckpt_0.3_alternative.zip

Vocoder

WaveFlow

  1. waveflow_ljspeech_ckpt_0.3.zip

Parallel WaveGAN

  1. pwg_baker_ckpt_0.4.zip

Voice Cloning

Tacotron2_AISHELL3

  1. tacotron2_aishell3_ckpt_0.3.zip

GE2E

  1. ge2e_ckpt_0.3.zip

License

Parakeet is provided under the Apache-2.0 license.