Skip to content
Snippets Groups Projects
Commit decb3bd5 authored by stephan's avatar stephan
Browse files

bugfix-missing activations in subnetwork

parent ed5d07c0
No related branches found
No related tags found
No related merge requests found
......@@ -21,7 +21,9 @@ class FlatNet(nn.Module):
self.feat_1 = nn.Sequential(
nn.Conv2d(22, 128, kernel_size=3, padding=1),
nn.ReLU(True),
nn.Conv2d(128, 128, kernel_size=3, padding=1),
nn.ReLU(True),
nn.Conv2d(128, 128, kernel_size=3, padding=1),
#nn.MaxPool2d(kernel_size=2, stride=2)
)
......@@ -31,6 +33,7 @@ class FlatNet(nn.Module):
)
self.feat_2 = nn.Sequential(
nn.Conv2d(256, 256, kernel_size=3, padding=1),
nn.ReLU(True),
nn.Conv2d(256, 256, kernel_size=3, padding=1),
# nn.MaxPool2d(kernel_size=2, stride=2)
)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment