Skip to content

Commit 005c1a4

Browse files
committed
✍ Update Author in Readme and setup file.
1 parent 574bde9 commit 005c1a4

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -247,10 +247,9 @@ import yaml
247247

248248
import tensorflow as tf
249249

250-
from tensorflow_tts.processor import LJSpeechProcessor
251-
252250
from tensorflow_tts.inference import AutoConfig
253251
from tensorflow_tts.inference import TFAutoModel
252+
from tensorflow_tts.inference import AutoProcessor
254253

255254
# initialize fastspeech model.
256255
fs_config = AutoConfig.from_pretrained('/examples/fastspeech/conf/fastspeech.v1.yaml')
@@ -269,7 +268,7 @@ melgan = TFAutoModel.from_pretrained(
269268

270269

271270
# inference
272-
processor = LJSpeechProcessor(None, cleaner_names="english_cleaners")
271+
processor = AutoProcessor.from_pretrained(pretrained_path="./test/files/ljspeech_mapper.json")
273272

274273
ids = processor.text_to_sequence("Recent research at Harvard has shown meditating for as little as 8 weeks, can actually increase the grey matter in the parts of the brain responsible for emotional regulation, and learning.")
275274
ids = tf.expand_dims(ids, 0)
@@ -291,7 +290,7 @@ sf.write('./audio_after.wav', audio_after, 22050, "PCM_16")
291290
```
292291

293292
# Contact
294-
[Minh Nguyen Quan Anh](https://github.com/dathudeptrai): [email protected], [erogol](https://github.com/erogol): [email protected], [Kuan Chen](https://github.com/azraelkuan): [email protected], [Takuya Ebata](https://github.com/MokkeMeguru): [email protected], [Trinh Le Quang](https://github.com/l4zyf9x): [email protected], [Yunchao He](https://github.com/candlewill): [email protected], [Alejandro Miguel Velasquez](https://github.com/ZDisket): [email protected]
293+
[Minh Nguyen Quan Anh](https://github.com/dathudeptrai): [email protected], [erogol](https://github.com/erogol): [email protected], [Kuan Chen](https://github.com/azraelkuan): [email protected], [Dawid Kobus](https://github.com/machineko): [email protected], [Takuya Ebata](https://github.com/MokkeMeguru): [email protected], [Trinh Le Quang](https://github.com/l4zyf9x): [email protected], [Yunchao He](https://github.com/candlewill): [email protected], [Alejandro Miguel Velasquez](https://github.com/ZDisket): [email protected]
295294

296295
# License
297296
Overrall, Almost models here are licensed under the [Apache 2.0](http://www.apache.org/licenses/LICENSE-2.0) for all countries in the world, except in **Viet Nam** this framework cannot be used for production in any way without permission from TensorflowTTS's Authors. There is an exception, Tacotron-2 can be used with any perpose. So, if you are VietNamese and want to use this framework for production, you **Must** contact our in andvance.

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@
7171
name="TensorflowTTS",
7272
version="0.0",
7373
url="https://github.com/dathudeptrai/TensorflowTTS",
74-
author="Minh Nguyen Quan Anh, Eren Gölge, Kuan Chen, Takuya Ebata, Trinh Le Quang, Yunchao He, Alejandro Miguel Velasquez",
75-
74+
author="Minh Nguyen Quan Anh, Eren Gölge, Kuan Chen, Dawid Kobus, Takuya Ebata, Trinh Le Quang, Yunchao He, Alejandro Miguel Velasquez",
75+
7676
description="TensorflowTTS: Real-Time State-of-the-art Speech Synthesis for Tensorflow 2",
7777
long_description=open(os.path.join(dirname, "README.md"), encoding="utf-8").read(),
7878
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)