项目作者: npuichigo

项目描述 :
A PyTorch implementation of the WaveGlow: A Flow-based Generative Network for Speech Synthesis
高级语言: Python
项目地址: git://github.com/npuichigo/waveglow.git
创建时间: 2018-11-04T16:30:44Z
项目社区:https://github.com/npuichigo/waveglow

开源协议:Apache License 2.0

下载


WaveGlow

A PyTorch implementation of the WaveGlow: A Flow-based Generative Network for Speech Synthesis

Quick Start:

  1. Install requirements:

    1. pip install -r requirements.txt
  2. Download dataset:

    1. wget http://festvox.org/cmu_arctic/cmu_arctic/packed/cmu_us_slt_arctic-0.95-release.tar.bz2
    2. tar xf cmu_us_slt_arctic-0.95-release.tar.bz2
  3. Extract features:
    feature extracting pipeline is the same as tacotron

  4. Training with default hyperparams:

    1. python train.py
  5. Synthesize from model:

    1. python generate.py --checkpoint=/path/to/model --local_condition_file=/path/to/local_conditon

Notes:

  • This is not official implementation, some details are not necessarily correct.
  • Work in progress.