Update metaformers.py

This commit is contained in:
Fredo Guan 2023-01-08 12:33:57 -08:00
parent bde9554604
commit cc8575e9d1

View File

@ -735,6 +735,7 @@ class MetaFormer(nn.Module):
def forward(self, x):
x = self.forward_features(x)
print(x.shape)
x = self.forward_head(x)
return x