How to view confusion matrix of neural network?
1 回表示 (過去 30 日間)
古いコメントを表示
I have created it using npr tool. I also want to plot following things of the network.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/160197/image.png)
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.
0 件のコメント
採用された回答
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 件のコメント
Pradya Panyainkaew
2018 年 4 月 22 日
Hell Greg
Are there any method to show only alll confusion matrix?
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Pattern Recognition and Classification についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!