フィルターのクリア

How to understand Softmax layer activations for pretrained CNN?

2 ビュー (過去 30 日間)
AK
AK 2021 年 4 月 21 日
コメント済み: AK 2021 年 4 月 27 日
Hello,
I was able to get softmax layer probabilities for the squeezenet network. Using
act1 = activations(net,i,'prob','OutputAs','rows');
However, Im unsure exactly what the probabilities represent, or how to identify what class they correspond with. Could you please explain what these probabilities mean? And how to get the corresponding class?
Thank you!

採用された回答

Jon Cherrie
Jon Cherrie 2021 年 4 月 22 日
How to identify what class they correspond with?
We can get this from the class names property of the output layer.
What these probabilities mean?
They are the probability that the given image is in the corresponding class.
Here's an example
net = squeezenet;
img = imread('peppers.png');
img = imresize(img,net.Layers(1).InputSize(1:2));
We can get the names of the classes from the output layer, which happens to bne the last layer for this network:
c = net.Layers(end).Classes;
Then get the activations from the softmax layer
p = activations(net,img,'prob','OutputAs','rows');
Note that these sum to 1
sum(p)
ans = single
1
We can then find the maximum probability and which class that corresponds to
[pm, i] = max(p)
pm = single
0.4172
i = 946
c(i)
ans = categorical
bell pepper
This is the same information that comes from the classify command:
[cc, pp] = classify(net,img);
cc
cc = categorical
bell pepper
isequal(pp, p)
ans = logical
1
  4 件のコメント
AK
AK 2021 年 4 月 22 日
Yes! This is perfect! Thank you!
AK
AK 2021 年 4 月 27 日
How do i get the probability of a particular index (i) ? As in, I know the index and want the associated probability. Thanks!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeImage Data Workflows についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by