Update metaformers.py

This commit is contained in:
Fredo Guan 2023-01-12 11:16:05 -08:00
parent 7869dd6769
commit d40d4c8c2a

View File

@ -749,7 +749,7 @@ class MetaFormer(nn.Module):
return x
x = self.global_pool(x)
x = x.flatten(1)
x = x.squeeze()
x = self.norm(x)
# (B, H, W, C) -> (B, C)
x = self.head(x)