how to get confusion matrix when neural network toolbox is used?
Afficher commentaires plus anciens
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?
Réponse acceptée
Plus de réponses (1)
B.k Sumedha
le 20 Juin 2015
0 votes
As soon as you train the network you get the option to plot the confusion matrix.Take a look at this pdf.
4 commentaires
pranjal
le 24 Juin 2015
B.k Sumedha
le 25 Juin 2015
Modifié(e) : B.k Sumedha
le 25 Juin 2015
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
le 25 Juin 2015
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
le 25 Juin 2015
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.
Catégories
En savoir plus sur Deep Learning Toolbox dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!