Fix causal option in SmallConvolutionModule (unused)

This commit is contained in:
Daniel Povey 2023-02-11 15:53:09 +08:00
parent 49627c6251
commit 4b27ffa911

View File

@ -1069,6 +1069,7 @@ class SmallConvolutionModule(nn.Module):
self, channels: int, self, channels: int,
hidden_dim: int = 128, hidden_dim: int = 128,
kernel_size: int = 5, kernel_size: int = 5,
causal: bool = False,
) -> None: ) -> None:
super().__init__() super().__init__()