We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e4480e commit 76d1669Copy full SHA for 76d1669
timm/layers/mlp.py
@@ -42,6 +42,7 @@ def forward(self, x):
42
x = self.fc1(x)
43
x = self.act(x)
44
x = self.drop1(x)
45
+ x = self.norm(x)
46
x = self.fc2(x)
47
x = self.drop2(x)
48
return x
0 commit comments