Viewing a single comment thread. View all comments

sanjuromack t1_j0l3kx3 wrote

Softmax class probabilities always have to sum to 100%, so unless you create an “other” class, this will continue to be an issue.

Just replace your the activation on your output layer with sigmoid activations, which will convert your model to a multilabel output.

−1

sanjuromack t1_j0pvx5v wrote

Not sure why I got downvoted. This is a very common problem in industry, and often how I have my team handle it.

1