ZFTurbo/VGG16-Pretrained-C

What the numbers in output file means?

GabrielShaukan opened this issue · 2 comments

Hi, I'm quite new to machine learning and don't understand the numbers in results output file (results.txt). Are they just probabilities of what the model predicts? If so what is it predicting, there is no text next to these numbers that classify them. Usually an inference of a model gives a result like: cat 78%, dog 17% car 5%. How can i get such an output?

As I remember you can find meaning of each number here:
https://storage.googleapis.com/download.tensorflow.org/data/imagenet_class_index.json

You have 1000 numbers on output. Each number is probability of corresponding class from this file.

Ok I understand now thanks.