[Solved] Multiclassification task using keras [closed]

The keyword is “multilabel classification“. In the output layer you have multiple neurons, each neuron representing one of your classes. Now you should use a binary classification for each neuron independently. So if you have 3 classes, the output of your network could be [0.1, 0.8, 0.99] which means the following: The first class is … Read more