Update metaformers.py

This commit is contained in:
Fredo Guan 2023-01-17 12:22:29 -08:00
parent 2209d0830e
commit 1d882eb494

View File

@ -536,7 +536,6 @@ class Mlp(nn.Module):
self.drop2 = nn.Dropout(drop_probs[1]) self.drop2 = nn.Dropout(drop_probs[1])
def forward(self, x): def forward(self, x):
print(x)
x = self.fc1(x) x = self.fc1(x)
x = self.act(x) x = self.act(x)
x = self.drop1(x) x = self.drop1(x)