how to get confusion matrix when neural network toolbox is used?
이전 댓글 표시
i have used NN toolbox for classification. after network is trained, "performance plot", "regression plot" and "training state plot" options are displayed. there is no option for displaying confusion matrix. how can i get it?
채택된 답변
추가 답변 (1개)
B.k Sumedha
2015년 6월 20일
0 개 추천
As soon as you train the network you get the option to plot the confusion matrix.Take a look at this pdf.
댓글 수: 4
pranjal
2015년 6월 24일
B.k Sumedha
2015년 6월 25일
편집: B.k Sumedha
2015년 6월 25일
I think you need to use certain commands like given in below document. Upto my knowledge you cant directly plot the matrix just my using nntool. http://in.mathworks.com/help/nnet/ref/plotconfusion.html
Greg Heath
2015년 6월 25일
Of course you can
[x,t] = simpleclass_dataset;
net = patternnet;
net = train(net,x,t);
y = net(x);
The nntool automatically pops up with the following option buttons
Performance
Training State
Error Histogram
Confusion
Receiver Operating Characteristic
Just click on the button
Hope this helps.
Thank you for formally accepting my ABOVE answer
Greg
B.k Sumedha
2015년 6월 25일
Yes and its obvious that it must pop-up. But just using the
'nntoool' command window you cant get those buttons which you have specified.
카테고리
도움말 센터 및 File Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!