forked from Rayhane-mamah/Tacotron-2
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WN Wheez fix, T synth const, docker, bugs fix
- Fix WaveNet Wheez problem (checkerboard artifacts and training scheme optimization) - Add Wavenet upsample layer types and Nearest neighbor upsample init - Add multi-GPU WaveNet implementation - Fix WaveNet scopes/names - Tacotron attention mechanism synthesis constraint (long utterance generation) - Tacotron encoder masking default - Tacotron batch norm after relu option (default) - Add docker build options - Major bugs (train + synthesis) fix - Minor bugs fix - Performance debugging and optimization TODO: finish documentation + minor bugs fix (if existing)
- Loading branch information
1 parent
970b080
commit 4dc16ce
Showing
27 changed files
with
1,749 additions
and
675 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
FROM continuumio/anaconda3:latest | ||
FROM tensorflow/tensorflow:latest-gpu-py3 | ||
|
||
RUN apt-get update | ||
RUN apt-get install -y libasound-dev portaudio19-dev libportaudio2 libportaudiocpp0 ffmpeg libav-tools wget git vim | ||
|
||
RUN wget http://data.keithito.com/data/speech/LJSpeech-1.1.tar.bz2 | ||
RUN tar -jxvf LJSpeech-1.1.tar.bz2 | ||
|
||
RUN git clone https://github.com/Rayhane-mamah/Tacotron-2.git | ||
|
||
WORKDIR Tacotron-2 | ||
RUN ln -s ../LJSpeech-1.1 . | ||
RUN pip install -r requirements.txt |
Oops, something went wrong.