How to view confusion matrix of neural network?

조회 수: 6 (최근 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 CenterFile Exchange에서 Pattern Recognition and Classification에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by