Order of labels in Alexnet's outputs vs. order of labels in ImageNet 2010

2 visualizaciones (últimos 30 días)
Hi all,
Do you know the difference between the order of labels in the Alexnet's output and the order of labels in ImageNet 2010?
As far as I know, Alexnet in MATLAB was trained with ImageNet 2010.
I got the Alexnet's outputs the first 1000 image from the test set of ImageNet 2010, then I compared the outputs with the corresponding ground-truth (ImageNet 2010 data were downloaded at http://www.image-net.org/challenges/LSVRC/2010/downloads). However, I got just 5/1000 label matched.
Thus, I am thinking that the order of labels in Alexnet's outputs and the order of labels in ImageNet 2010 are different. Do you know how different they are?
Any help would be highly appreciated.
Best,
Soan
  2 comentarios
Walter Roberson
Walter Roberson el 26 de Sept. de 2020
Do the two have the same statistics? If the two match in a sorted histogram, then it would be a class rename (for whatever reason), but if the statistics do not match then they would seem to be reflecting different images.

Iniciar sesión para comentar.

Respuestas (1)

Madhav Thakker
Madhav Thakker el 24 de Sept. de 2020
Hi Saon,
You can get the labels for the pretrained Alexnet in MATLAB by loading the pretrained model.
net = alexnet;
net.Layers(25,1).Classes
You can get the labels of ImageNet 2010 from the offical ImageNet site and compare the labels. I can't think of a reason why MATLAB Alexnet's labels will be different from offical ImageNet labels.
Hope this helps.
  4 comentarios
Soan Duong
Soan Duong el 26 de Sept. de 2020
Sure. Below is the code that I used to obtain the output labels of AlexNet.
clear
net = alexnet;
% Get name of classes (AlexNet's output)
labels = net.Layers(end).Classes;
% Write the labels into a text file
fid = fopen('alexnet_labels.txt','w');
for k = 1 : length(labels)
fprintf( fid, '%s\n', labels(k) );
end
fclose(fid);
I have also attached the text files of the labels that I got from the ImageNet2010 (imagenet_labels.txt) and from the above MATLAB code (alexnet_labels.txt). Do you have any idea to match those sets of labels?
Madhav Thakker
Madhav Thakker el 26 de Sept. de 2020
Hi Saon, can you share the source of your ImageNet labels (imagenet_labels.txt). A link from where you got the labels might be helpful.

Iniciar sesión para comentar.

Categorías

Más información sobre Image Data Workflows en Help Center y File Exchange.

Productos

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by