Skip to content
Advertisement

Keras: Classification report accuracy is different between model.predict accuracy for multiclass

Colab link is here:

The data is imported the following was

JavaScript

The model is trained the following way

JavaScript

I am struggling with getting the right predicted categories and right true_categories to get the classification report to work:

JavaScript

At the moment the output of the epoch is contradicting the classification report

JavaScript

The validation set on the model returns

JavaScript

while the classification report is very different:

JavaScript

Similiar questions here, here, here, here, here with no answers to this issue.

Advertisement

Answer

You set label_mode='categorical' then this is a multi-class classification and you need to use softmax activation in your last dense layer. Because softmax force the outputs sum to be equal to 1. You can kinda interpret them as probabilities. With sigmoid it will not be possible to find the dominant class. It can assign any values without restriction.

My model’s last layer: Dense(5, activation = 'softmax')

My model’s loss: loss=tf.keras.losses.CategoricalCrossentropy(), same as yours. Labels are one-hot-encoded in this case.

Explanation: I used a 5 class classification for demo purposes, but it follows the same logic.

JavaScript

This incidates each classes probabilities, for example first example has a probability of 43% being belong to class 2. You need to use argmax to find class index.

JavaScript

We now have the predicted classes. Now need to obtain true classes.

JavaScript

If you feed this into classification report, you will get following:

JavaScript

We need to also do:

JavaScript

Now it is ready to for comparison.

JavaScript

That should produce the expected result:

JavaScript

Edit: Classes might get shuffled as tf.keras.preprocessing.image_dataset_from_directory sets shuffle = True. For val_ds try to set shuffle = False. Like this:

JavaScript

Edit2: Here is what I came up with:

JavaScript

Classification Report:

JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement