From a757353aa0392bd18b02cbaf3f9bb8f34220d41d Mon Sep 17 00:00:00 2001 From: ylzz1997 Date: Sat, 3 Jun 2023 13:02:00 +0800 Subject: [PATCH] Debug SnakeHIFIGAN --- vdecoder/hifiganwithsnake/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vdecoder/hifiganwithsnake/models.py b/vdecoder/hifiganwithsnake/models.py index 82decc2..664547b 100644 --- a/vdecoder/hifiganwithsnake/models.py +++ b/vdecoder/hifiganwithsnake/models.py @@ -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