mirror of
https://github.com/wassname/TTS.git
synced 2026-09-12 12:11:47 +08:00
Remove DataParallel from the model state before saving
This commit is contained in:
+1
-1
@@ -213,7 +213,7 @@ class Decoder(nn.Module):
|
||||
r (int): number of outputs per time step.
|
||||
eps (float): threshold for detecting the end of a sentence.
|
||||
"""
|
||||
def __init__(self, in_features, memory_dim, r, eps=0.2):
|
||||
def __init__(self, in_features, memory_dim, r, eps=0.05):
|
||||
super(Decoder, self).__init__()
|
||||
self.max_decoder_steps = 200
|
||||
self.memory_dim = memory_dim
|
||||
|
||||
Reference in New Issue
Block a user