-
Notifications
You must be signed in to change notification settings - Fork 775
Closed
Description
I was checking the implementation of densenet and I noticed that the class layers, defined as:
self.class_layers = nn.Sequential(
OrderedDict(
[
("relu", get_act_layer(name=act)),
("pool", avg_pool_type(1)),
("flatten", nn.Flatten(1)),
("out", nn.Linear(in_channels, out_channels)),
]There is no softmax in the output, and I find this odd. Am I missing something?
Metadata
Metadata
Assignees
Labels
No labels