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?
I was checking the implementation of densenet and I noticed that the class layers, defined as:
There is no softmax in the output, and I find this odd. Am I missing something?