Giter VIP home page Giter VIP logo

tacotron2-pytorch's Introduction

Tacotron2-PyTorch

PyTorch implementation of DeepMind's Tacotron-2. A deep neural network architecture described in this paper: Natural TTS: synthesis by conditioning Wavenet on MEL spectogram predictions

A whole TTS system is consisted of front-end and back-end. Tacotron 2 and deep voice 3 are excellent front-ends. And WaveNet and WaveGlow are that back-ends.

I decide to rewrite the Tacotron 2 although Rayhane-mamah and NVidia have implemented it. Because I wish I could master and implement the attention mechanism by this project. And many beginners could benifit from its conciseness to understand Tacotron 2.

It aims to cooperate with the my single-Gaussian wavenet(including autoregressive wavenet and parallel wavenet) and waveglow which are realized with PyTorch.

WARNING: Only support mandarin which is symboled with Pinyin. I plan to support more language later.

Data preprocess

Data preprocessing is borrowed from the Tacotron-2 implemented with Tensorflow. It is adapted slightly to meet the requirements of my self-made mandarin datasets. You should specific the index txt and output directory like the script I provides.

#!/bin/bash
python preprocess.py --dataset=mandarin \
                     --input_txt='metadata.csv' \
	             --base_dir=./ \
		     --output_dir='dataset_mandarin'

It will create an folder which contains the preprocessed data in the direcroty named base_dir/output_dir.

Training

You can refer to the script.

#!/bin/bash
CUDA_VISIBLE_DEVICES=$1 python train.py --data-root=dataset_mandarin/training_data/ \
                                        --run-name="Tacotron2_beta_profile"

Result

The alignment at 20710 step with 32 batch size

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.