フィルターのクリア

How to view confusion matrix of neural network?

5 ビュー (過去 30 日間)
Explorer
Explorer 2016 年 4 月 5 日
コメント済み: Pradya Panyainkaew 2018 年 4 月 22 日
I have created it using npr tool. I also want to plot following things of the network.
There were options to view all these plots after training but I did not saved them at that time. How can I see those plots and confusion matrix now.
Mat file is attached in which there is a network I am talking about.
load it and see if you can let me know the things mentioned above.

採用された回答

Alexandra Tzilivaki
Alexandra Tzilivaki 2016 年 4 月 5 日
編集済み: Alexandra Tzilivaki 2016 年 4 月 5 日
If you have saved t(=targets), y=(outputs), x(=inputs), net and tr then simply plot:
% Plots
figure; plotconfusion(t,y);
figure; plotperform(tr);
figure; plottrainstate(tr);
figure; ploterrhist(e);
figure; plotfit(net,x,t);
figure; plotregression(t,y);
  5 件のコメント
Greg Heath
Greg Heath 2016 年 4 月 19 日
Nice Answer.
Greg
Pradya Panyainkaew
Pradya Panyainkaew 2018 年 4 月 22 日
Hell Greg
Are there any method to show only alll confusion matrix?

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeDeep Learning Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by