From 16e20ed0f2fb908e23db924aef0f96a94460fa1b Mon Sep 17 00:00:00 2001 From: Liangcd <30542401+cdliang11@users.noreply.github.com> Date: Thu, 17 Nov 2022 16:30:54 +0800 Subject: [PATCH] [tcn] remove unused variables (#107) --- wekws/model/tcn.py | 1 - 1 file changed, 1 deletion(-) diff --git a/wekws/model/tcn.py b/wekws/model/tcn.py index 2c76ed4..36a6a29 100644 --- a/wekws/model/tcn.py +++ b/wekws/model/tcn.py @@ -124,7 +124,6 @@ class TCN(nn.Module): dropout: float = 0.1, block_class=CnnBlock): super().__init__() - layers = [] self.padding = 0 self.network = nn.ModuleList() for i in range(num_layers):