From 00cd60b47f080a6f4ead3a8f2c3a95d251c18722 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BA=90=E6=96=87=E9=9B=A8?= <41315874+fumiama@users.noreply.github.com> Date: Sat, 8 Jun 2024 01:50:16 +0900 Subject: [PATCH] fix(rvc.resblock): incorrect convs name --- rvc/residuals.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rvc/residuals.py b/rvc/residuals.py index 9daef7e..4a135ce 100644 --- a/rvc/residuals.py +++ b/rvc/residuals.py @@ -42,7 +42,7 @@ class ResBlock1(torch.nn.Module): self.convs2 = nn.ModuleList() for _ in dilation: - self.convs1.append( + self.convs2.append( weight_norm( Conv1d( channels,