Update metaformers.py

This commit is contained in:
Fredo Guan 2023-01-07 23:53:53 -08:00
parent f71beadc29
commit 358c4ae7ec

View File

@ -414,7 +414,7 @@ class LayerNormGeneral(nn.Module):
x = x * self.weight
if self.use_bias:
x = x + self.bias
return
return x
class SepConv(nn.Module):
r"""