どうすれば最終出力層​の全ラベルに対するス​コア一覧が見えますか​?

6 visualizzazioni (ultimi 30 giorni)
howahowa46
howahowa46 il 16 Set 2020
Commentato: howahowa46 il 17 Set 2020
DeepLearning評価キットに含まれる D2_1_predict() を用いてalexnetで推論しているのですが。
最終の出力層 output において どのラベルのスコア(確率)が幾らだったのかが知りたいのですが
何か取り出してくる方法はありますでしょうか?
下記のように書いて、scoresにスコアの一覧を取得できたのですが
数字の羅列だけで対応するラベル(クラス名?)がわかりません。
%% AlexNetのネットワークに画像をいれて予測をします。
YPred = classify(net,I)
YPred = char(YPred);
scores = activations(net,I,'output','OutputAs','columns');

Risposte (1)

Shunichi Kusano
Shunichi Kusano il 16 Set 2020
こんにちは。
net.Layers(end).Classes
でクラスを見ることができるので、あとはscoresと対照をとればそれぞれのスコアがわかります。
  1 Commento
howahowa46
howahowa46 il 17 Set 2020
ありがとうございます。クラス一覧が取得できました!

Accedi per commentare.

Categorie

Scopri di più su イメージを使用した深層学習 in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!