We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab2011a commit c100606Copy full SHA for c100606
src/Microsoft.ML.AutoML/AutoMLExperiment/IMetricManager.cs
@@ -63,7 +63,7 @@ public double Evaluate(MLContext context, IDataView eval)
63
BinaryClassificationMetric.PositivePrecision => metric.PositivePrecision,
64
BinaryClassificationMetric.NegativePrecision => metric.NegativePrecision,
65
BinaryClassificationMetric.NegativeRecall => metric.NegativeRecall,
66
- BinaryClassificationMetric.PositiveRecall => metric.PositivePrecision,
+ BinaryClassificationMetric.PositiveRecall => metric.PositiveRecall,
67
BinaryClassificationMetric.F1Score => metric.F1Score,
68
_ => throw new NotImplementedException(),
69
};
0 commit comments