Skip to content

Commit

Permalink
Fix indentation error.
Browse files Browse the repository at this point in the history
  • Loading branch information
galv committed May 10, 2024
1 parent 4530517 commit 110d0d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nemo/collections/asr/parts/submodules/conformer_modules.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 110d0d1

Please sign in to comment.