mirror of https://github.com/coqui-ai/TTS.git
config update and increase dropout p 0.5
This commit is contained in:
parent
cea628f619
commit
916f5df5f9
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"model_name": "TTS-phoneme",
|
||||
"model_description": "Training with phonemes created by phonemizer.",
|
||||
"model_description": "Training with phonemes, dropout rate 0.5",
|
||||
|
||||
"audio":{
|
||||
"audio_processor": "audio", // to use dictate different audio processors, if available.
|
||||
|
|
|
@ -22,7 +22,7 @@ class Prenet(nn.Module):
|
|||
for (in_size, out_size) in zip(in_features, out_features)
|
||||
])
|
||||
self.relu = nn.ReLU()
|
||||
self.dropout = nn.Dropout(0.1)
|
||||
self.dropout = nn.Dropout(0.5)
|
||||
# self.init_layers()
|
||||
|
||||
def init_layers(self):
|
||||
|
|
Loading…
Reference in New Issue