Skip to content

Commit 936aaeb

Browse files
committed
fix confusion matrix statistics in wizard evaluation
1 parent 535bcbc commit 936aaeb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

eis_qgis_plugin/eis_wizard/evaluation/statistics.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,10 @@ def __init__(self, parent=None) -> None:
6161
"Precision": self.precision,
6262
"Recall": self.recall,
6363
"F1_score": self.f1,
64-
"True_negatives": self.true_positives,
65-
"False_negatives": self.false_positives,
66-
"False_positives": self.false_negatives,
67-
"True_positives": self.true_negatives
64+
"True_negatives": self.true_negatives,
65+
"False_negatives": self.false_negatives,
66+
"False_positives": self.false_positives,
67+
"True_positives": self.true_positives
6868
}
6969
self.probability_stats_widgets = {
7070
"roc_auc": self.roc_auc,

0 commit comments

Comments
 (0)