1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
Matrix :
Predict L1 L2 L3
Actual
L1 3 0 2
L2 0 1 1
L3 0 2 3
Normalized Matrix :
Predict L1 L2 L3
Actual
L1 0.6 0.0 0.4
L2 0.0 0.5 0.5
L3 0.0 0.4 0.6
Overall Statistics :
Kappa 0.35484
Class Statistics :
Classes L1
ACC(Accuracy) 0.83333
AUC(Area under the ROC curve) 0.8
TPR(Sensitivity, recall, hit rate, or true positive rate) 0.6
One-Vs-All :
L1-Vs-All :
Predict L1 ~
Actual
L1 3 2
~ 0 7
L2-Vs-All :
Predict L2 ~
Actual
L2 1 1
~ 2 8
L3-Vs-All :
Predict L3 ~
Actual
L3 3 2
~ 3 4
|