Skip to content
Snippets Groups Projects
Commit d5a900ca authored by Yifan Zhao's avatar Yifan Zhao
Browse files

Turned on Softmax layer by default

parent b18b5f12
No related branches found
No related tags found
No related merge requests found
...@@ -25,7 +25,7 @@ def make_conv_pool_activ( ...@@ -25,7 +25,7 @@ def make_conv_pool_activ(
class Classifier(Module): class Classifier(Module):
def __init__( def __init__(
self, convs: Sequential, linears: Sequential, use_softmax: bool = False self, convs: Sequential, linears: Sequential, use_softmax: bool = True
): ):
super().__init__() super().__init__()
self.convs = convs self.convs = convs
......
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