Debug SnakeHIFIGAN

This commit is contained in:
ylzz1997 2023-06-03 13:02:00 +08:00
parent 36000aff4b
commit a757353aa0
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ class ResBlock1(torch.nn.Module):
for c1, c2, a1, a2 in zip(self.convs1, self.convs2, acts1, acts2):
xt = a1(x)
xt = c1(xt)
xt = a2(x)
xt = a2(xt)
xt = c2(xt)
x = xt + x
return x