Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
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
4 changes: 3 additions & 1 deletion 4 tensorflow_tts/configs/tacotron2.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
from tensorflow_tts.processor.ljspeechu import LJSPEECH_U_SYMBOLS as lju_symbols
from tensorflow_tts.processor.synpaflex import SYNPAFLEX_SYMBOLS as synpaflex_symbols
from tensorflow_tts.processor.jsut import JSUT_SYMBOLS as jsut_symbols

from tensorflow_tts.processor.thorsten import THORSTEN_SYMBOLS as thorsten_symbols

class Tacotron2Config(BaseConfig):
"""Initialize Tacotron-2 Config."""
Expand Down Expand Up @@ -76,6 +76,8 @@ def __init__(
self.vocab_size = len(synpaflex_symbols)
elif dataset == "jsut":
self.vocab_size = len(jsut_symbols)
elif dataset == "thorsten":
self.vocab_size = len(thorsten_symbols)
else:
raise ValueError("No such dataset: {}".format(dataset))
self.embedding_hidden_size = embedding_hidden_size
Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.