How to use sim function to get recognized values
Show older comments
Hello. I am doing some recognition using neural networks.
rede = patternnet;
net = train(rede, input, target);
out = sim(net, input);
disp(sim);
plotconfusion( out, target);
When using the plot confusion where, usually, we can see which were recognized and which weren't, but mine has 99 inputs with 35 targets therefore it's a really big mess, and i tried make the fontsize of the plot confusion smaller but it doesn't work. And I want to know if there is any way to use the sim function do get the same values as are shown in plot confusion. When i make the disp(sim) I get decimal values but of course in plot confusion i get integers. Imagine i am recognizing numbers and i had thirty five 9s but it was only recognized 10 of them. Can I know that ten 9s were recognized without using plot confusion?
Answers (0)
Categories
Find more on Pattern Recognition in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!