Confusion matrix misclassification problem
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
sprklspring
il 3 Ott 2018
Riaperto: Walter Roberson
il 22 Dic 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.
Risposta accettata
ANKUR KUMAR
il 3 Ott 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
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Discriminant Analysis in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!