how to get confusion matrix when neural network toolbox is used?

6 次查看(过去 30 天)
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?

采纳的回答

Greg Heath
Greg Heath 2015-6-21
Feedforwardnet is a generic net that NEVER has to be called directly.
Use fitnet for regression/curvefitting and use patternnet for classification/pattern-recognition. Both call feedforwardnet internally with the appropriate options.
Using patternnet, the plot options are
Performance
Training State
Error Histogram
Confusion
Receiving Operating Characteristic
Hope this helps.
Thank you for formally accepting my answer
Greg

更多回答(1 个)

B.k Sumedha
B.k Sumedha 2015-6-20
As soon as you train the network you get the option to plot the confusion matrix.Take a look at this pdf.
  4 个评论
Greg Heath
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
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.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Sequence and Numeric Feature Data Workflows 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by