Skip to content

Commit c100606

Browse files
authored
Fix PositiveRecall optimization in AutoMLExperiment (#7493)
1 parent ab2011a commit c100606

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Microsoft.ML.AutoML/AutoMLExperiment/IMetricManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public double Evaluate(MLContext context, IDataView eval)
6363
BinaryClassificationMetric.PositivePrecision => metric.PositivePrecision,
6464
BinaryClassificationMetric.NegativePrecision => metric.NegativePrecision,
6565
BinaryClassificationMetric.NegativeRecall => metric.NegativeRecall,
66-
BinaryClassificationMetric.PositiveRecall => metric.PositivePrecision,
66+
BinaryClassificationMetric.PositiveRecall => metric.PositiveRecall,
6767
BinaryClassificationMetric.F1Score => metric.F1Score,
6868
_ => throw new NotImplementedException(),
6969
};

0 commit comments

Comments
 (0)