You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if i >= self.cond_level:
mel = self.cond_up[i - self.cond_level](mel)
x += mel
if i > self.cond_level:
if output is None:
output = self.res_output[i - self.cond_level - 1](x)
else:
output = self.res_output[i - self.cond_level - 1](output)
in the code, for the nn upsample input is: mel condition + resblock output.
but in the paper, nn upsample input only is resblock output or the last nn upsample output;
so, Is this more reasonable?
if i > self.cond_level:
if output is None:
output = self.res_output[i - self.cond_level - 1](x)
else:
output = self.res_output[i - self.cond_level - 1](output)
if i >= self.cond_level:
mel = self.cond_up[i - self.cond_level](mel)
x += mel
The text was updated successfully, but these errors were encountered:
for generator code line 137:
in the code, for the nn upsample input is: mel condition + resblock output.
but in the paper, nn upsample input only is resblock output or the last nn upsample output;
so, Is this more reasonable?
The text was updated successfully, but these errors were encountered: