From 4b27ffa9113dc1d0ff1453d430219e1967840550 Mon Sep 17 00:00:00 2001 From: Daniel Povey Date: Sat, 11 Feb 2023 15:53:09 +0800 Subject: [PATCH] Fix causal option in SmallConvolutionModule (unused) --- egs/librispeech/ASR/pruned_transducer_stateless7/zipformer.py | 1 + 1 file changed, 1 insertion(+) diff --git a/egs/librispeech/ASR/pruned_transducer_stateless7/zipformer.py b/egs/librispeech/ASR/pruned_transducer_stateless7/zipformer.py index 6da3566e9..edfbf3b38 100644 --- a/egs/librispeech/ASR/pruned_transducer_stateless7/zipformer.py +++ b/egs/librispeech/ASR/pruned_transducer_stateless7/zipformer.py @@ -1069,6 +1069,7 @@ class SmallConvolutionModule(nn.Module): self, channels: int, hidden_dim: int = 128, kernel_size: int = 5, + causal: bool = False, ) -> None: super().__init__()