From 110d0d11ade5fd2af88e19dc2b57ca331ff472fe Mon Sep 17 00:00:00 2001 From: Daniel Galvez Date: Fri, 10 May 2024 13:23:52 -0700 Subject: [PATCH] Fix indentation error. --- nemo/collections/asr/parts/submodules/conformer_modules.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nemo/collections/asr/parts/submodules/conformer_modules.py b/nemo/collections/asr/parts/submodules/conformer_modules.py index f825d8910979d..2552b9fedeaf4 100644 --- a/nemo/collections/asr/parts/submodules/conformer_modules.py +++ b/nemo/collections/asr/parts/submodules/conformer_modules.py @@ -183,7 +183,7 @@ def forward(self, x, att_mask=None, pos_emb=None, pad_mask=None, cache_last_chan pack_ip = self.forward_enabled_adapters(pack_ip) residual = pack_ip['x'] - x = self.norm_conv(residual) + x = self.norm_conv(residual) x = self.conv(x, pad_mask=pad_mask, cache=cache_last_time) if cache_last_time is not None: (x, cache_last_time) = x