How to view confusion matrix of neural network?

6 Ansichten (letzte 30 Tage)
Explorer
Explorer am 5 Apr. 2016
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.

Akzeptierte Antwort

Alexandra Tzilivaki
Alexandra Tzilivaki am 5 Apr. 2016
Bearbeitet: Alexandra Tzilivaki am 5 Apr. 2016
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 Kommentare
Greg Heath
Greg Heath am 19 Apr. 2016
Nice Answer.
Greg
Pradya Panyainkaew
Pradya Panyainkaew am 22 Apr. 2018
Hell Greg
Are there any method to show only alll confusion matrix?

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Deep Learning Toolbox finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by