Confusion matrix misclassification problem

2 vues (au cours des 30 derniers jours)
sprklspring
sprklspring le 3 Oct 2018
Rouvert : Walter Roberson le 22 Déc 2018
I noticed that when one of the classes (complete testing set for one class) gets fully misclassified for other classes, the confusion matrix, instead of showing what it's been misclassified with, sets the whole class row to 0. I am using knn for the classification.
  1 commentaire
ANKUR KUMAR
ANKUR KUMAR le 3 Oct 2018
Please attach your code.

Connectez-vous pour commenter.

Réponse acceptée

ANKUR KUMAR
ANKUR KUMAR le 3 Oct 2018
To get rid of singeton matrix, use squeeze or purmute.
A=randi(10,25,1,20);
size(A)
ans =
25 1 20
B=squeeze(A);
size(B)
ans =
25 20
C=permute(A,[1,3,2]);
size(C)
ans =
25 20

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by