How to use sim function to get recognized values
이전 댓글 표시
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?
답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Pattern Recognition에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!