Merge branch 'dev' of github.com:mozilla/TTS into dev

This commit is contained in:
Eren Golge
2019-08-27 19:56:36 +02:00
2 changed files with 3 additions and 6 deletions
+2 -3
View File
@@ -38,9 +38,8 @@ class TacotronGST(nn.Module):
forward_attn, trans_agent, forward_attn_mask,
location_attn, separate_stopnet)
self.postnet = PostCBHG(mel_dim)
self.last_linear = nn.Sequential(
nn.Linear(self.postnet.cbhg.gru_features * 2, linear_dim),
nn.Sigmoid())
self.last_linear = nn.Linear(self.postnet.cbhg.gru_features * 2, linear_dim)
def forward(self, characters, text_lengths, mel_specs, speaker_ids=None):
B = characters.size(0)
+1 -3
View File
@@ -88,8 +88,6 @@ setup(
# "lws",
"tqdm",
"soundfile",
],
dependency_links=[
'http://github.com/bootphon/phonemizer/tarball/master#egg=phonemizer'
"phonemizer @ https://github.com/bootphon/phonemizer/tarball/master",
],
)