Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 9 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,15 @@
I implement yet another text-to-speech model, dc-tts, introduced in [Efficiently Trainable Text-to-Speech System Based on Deep Convolutional Networks with Guided Attention](https://arxiv.org/abs/1710.08969). My goal, however, is not just replicating the paper. Rather, I'd like to gain insights about various sound projects.

## Requirements
* NumPy >= 1.11.1
* TensorFlow >= 1.3 (Note that the API of `tf.contrib.layers.layer_norm` has changed since 1.3)
* librosa
* tqdm
* matplotlib
* scipy

In general, each of the below requirements can be installed with [pip](https://pip.pypa.io/en/stable/installing/) by typing `pip install`, followed by the package name. For exampe, `pip install tqdm`, or `pip install matplotlib`.

* [NumPy](http://www.numpy.org) >= 1.11.1
* [TensorFlow](https://www.tensorflow.org/) >= 1.3 (Note that the API of `tf.contrib.layers.layer_norm` has changed since 1.3)
* [librosa](https://github.com/librosa/librosa)
* [tqdm](https://pypi.python.org/pypi/tqdm#installation)
* [matplotlib](https://matplotlib.org)
* [scipy](https://www.scipy.org/scipylib/index.html)

## Data

Expand Down