Skip to content
Snippets Groups Projects
Commit 7807ef5f authored by Paul Best's avatar Paul Best
Browse files

fix maxPool for orca and globi

parent 9d6e2436
No related branches found
No related tags found
No related merge requests found
...@@ -181,7 +181,6 @@ get = { ...@@ -181,7 +181,6 @@ get = {
nn.Dropout2d(p=.5), nn.Dropout2d(p=.5),
nn.LeakyReLU(0.01), nn.LeakyReLU(0.01),
nn.Conv2d(64, 1, 1, bias=False), nn.Conv2d(64, 1, 1, bias=False),
nn.AdaptiveMaxPool2d(output_size=(1, 1))
) )
) )
}, },
...@@ -223,7 +222,6 @@ get = { ...@@ -223,7 +222,6 @@ get = {
nn.Dropout(p=.5), nn.Dropout(p=.5),
nn.Conv2d(64, 1, 1, bias=False), nn.Conv2d(64, 1, 1, bias=False),
nn.MaxPool2d((6, 1)), nn.MaxPool2d((6, 1)),
nn.AdaptiveMaxPool2d(output_size=(1, 1))
) )
) )
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment