Skip to content
Advertisement

Getting a list of all known classes of vgg-16 in keras

I use the pre-trained VGG-16 model from Keras.

My working source code so far is like this:

JavaScript

I wound out that the model is trained on 1000 classes. It there any possibility to get the list of the classes this model is trained on? Printing out all the prediction labels is not an option because there are only 5 returned.

Thanks in advance

Advertisement

Answer

You could use decode_predictions and pass the total number of classes in the top=1000 parameter (only its default value is 5).

Or you could look at how Keras does this internally: It downloads the file imagenet_class_index.json (and usually caches it in ~/.keras/models/). This is a simple json file containing all class labels.

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