An open API service indexing awesome lists of open source software.

https://github.com/erogol/tts_tf

WIP Tensorflow implementation of https://github.com/mozilla/TTS
https://github.com/erogol/tts_tf

deep-learning tacotron tensorflow tensorflow2 text-to-speech tts

Last synced: 12 months ago
JSON representation

WIP Tensorflow implementation of https://github.com/mozilla/TTS

Awesome Lists containing this project

README

          

Tensorflow implementation of https://github.com/mozilla/TTS

### TODO
- [ ] Catching up with TTS pytorch
- [x] Replace pytorch layers with TF
- [x] Basic eager mode training
- 5x times slower than pytorch (if you see any easy optimizations, please let me know.)
- [ ] Optimization with tf.function
- tf.function looks so hard to use with models having different input shapes per iteration since TF retraces the graph for each input. As far as I see from the official examples, workarounds take the advantage of using eager mode. (Correct me if I am wrong.)
- [ ] TF based data loader

- [ ] Model exporting pipeline for deployment
- [ ] Vocoder adaptation
- [ ] WaveRNN
- [ ] LPCNet