2 writes to PositiveRecall
Microsoft.ML.Data (2)
Evaluators\Metrics\BinaryClassificationMetrics.cs (2)
104PositiveRecall = Fetch(BinaryClassifierEvaluator.PosRecallName); 119PositiveRecall = positiveRecall;
43 references to PositiveRecall
Microsoft.ML.AutoML (4)
API\BinaryClassificationExperiment.cs (2)
86/// See <see cref="BinaryClassificationMetrics.PositiveRecall"/>. 478BinaryClassificationMetric.PositiveRecall => metrics.PositiveRecall,
Experiment\MetricsAgents\BinaryMetricsAgent.cs (1)
45return metrics.PositiveRecall;
Experiment\Runners\CrossValSummaryRunner.cs (1)
105positiveRecall: GetAverageOfNonNaNScores(newMetrics.Select(x => x.PositiveRecall)),
Microsoft.ML.AutoML.Samples (3)
AutoFit\BinaryClassificationExperiment.cs (1)
71Console.WriteLine($"PositiveRecall: {metrics.PositiveRecall}");
AutoMLExperiment.cs (1)
140Console.WriteLine($"Positive Recall: {metrics.PositiveRecall:F2}\n");
Sweepable\SweepableLightGBMBinaryExperiment.cs (1)
167Console.WriteLine($"Positive Recall: {metrics.PositiveRecall:F2}\n");
Microsoft.ML.Fairlearn (2)
Metrics\FairlearnMetricCatalog.cs (2)
104result["PosRecall"] = DataFrameColumn.Create("PosRecall", groupMetric.Keys.Select(k => groupMetric[k].PositiveRecall)); 123{ "PosRecall", metrics.PositiveRecall },
Microsoft.ML.IntegrationTests (1)
Common.cs (1)
185Assert.InRange(metrics.PositiveRecall, 0, 1);
Microsoft.ML.Predictor.Tests (1)
TestIniModels.cs (1)
593Assert.Equal(0.96265560165975106, results.PositiveRecall);
Microsoft.ML.Samples (28)
Dynamic\Trainers\BinaryClassification\AveragedPerceptron.cs (1)
138Console.WriteLine($"Positive Recall: {metrics.PositiveRecall:F2}\n");
Dynamic\Trainers\BinaryClassification\AveragedPerceptronWithOptions.cs (1)
149Console.WriteLine($"Positive Recall: {metrics.PositiveRecall:F2}\n");
Dynamic\Trainers\BinaryClassification\FactorizationMachine.cs (1)
146Console.WriteLine($"Positive Recall: {metrics.PositiveRecall:F2}\n");
Dynamic\Trainers\BinaryClassification\FastForest.cs (1)
141Console.WriteLine($"Positive Recall: {metrics.PositiveRecall:F2}\n");
Dynamic\Trainers\BinaryClassification\FastForestWithOptions.cs (1)
153Console.WriteLine($"Positive Recall: {metrics.PositiveRecall:F2}\n");
Dynamic\Trainers\BinaryClassification\FastTree.cs (1)
144Console.WriteLine($"Positive Recall: {metrics.PositiveRecall:F2}\n");
Dynamic\Trainers\BinaryClassification\FastTreeWithOptions.cs (1)
156Console.WriteLine($"Positive Recall: {metrics.PositiveRecall:F2}\n");
Dynamic\Trainers\BinaryClassification\FieldAwareFactorizationMachine.cs (1)
205Console.WriteLine($"Positive Recall: {metrics.PositiveRecall:F2}");
Dynamic\Trainers\BinaryClassification\FieldAwareFactorizationMachineWithOptions.cs (1)
216Console.WriteLine($"Positive Recall: {metrics.PositiveRecall:F2}");
Dynamic\Trainers\BinaryClassification\LbfgsLogisticRegression.cs (1)
141Console.WriteLine($"Positive Recall: {metrics.PositiveRecall:F2}\n");
Dynamic\Trainers\BinaryClassification\LbfgsLogisticRegressionWithOptions.cs (1)
150Console.WriteLine($"Positive Recall: {metrics.PositiveRecall:F2}\n");
Dynamic\Trainers\BinaryClassification\LdSvm.cs (1)
138Console.WriteLine($"Positive Recall: {metrics.PositiveRecall:F2}\n");
Dynamic\Trainers\BinaryClassification\LdSvmWithOptions.cs (1)
147Console.WriteLine($"Positive Recall: {metrics.PositiveRecall:F2}\n");
Dynamic\Trainers\BinaryClassification\LightGbm.cs (1)
141Console.WriteLine($"Positive Recall: {metrics.PositiveRecall:F2}\n");
Dynamic\Trainers\BinaryClassification\LightGbmWithOptions.cs (1)
152Console.WriteLine($"Positive Recall: {metrics.PositiveRecall:F2}\n");
Dynamic\Trainers\BinaryClassification\LinearSvm.cs (1)
138Console.WriteLine($"Positive Recall: {metrics.PositiveRecall:F2}\n");
Dynamic\Trainers\BinaryClassification\LinearSvmWithOptions.cs (1)
147Console.WriteLine($"Positive Recall: {metrics.PositiveRecall:F2}\n");
Dynamic\Trainers\BinaryClassification\PriorTrainer.cs (1)
138Console.WriteLine($"Positive Recall: {metrics.PositiveRecall:F2}\n");
Dynamic\Trainers\BinaryClassification\SdcaLogisticRegression.cs (1)
146Console.WriteLine($"Positive Recall: {metrics.PositiveRecall:F2}\n");
Dynamic\Trainers\BinaryClassification\SdcaLogisticRegressionWithOptions.cs (1)
158Console.WriteLine($"Positive Recall: {metrics.PositiveRecall:F2}\n");
Dynamic\Trainers\BinaryClassification\SdcaNonCalibrated.cs (1)
145Console.WriteLine($"Positive Recall: {metrics.PositiveRecall:F2}\n");
Dynamic\Trainers\BinaryClassification\SdcaNonCalibratedWithOptions.cs (1)
160Console.WriteLine($"Positive Recall: {metrics.PositiveRecall:F2}\n");
Dynamic\Trainers\BinaryClassification\SgdCalibrated.cs (1)
138Console.WriteLine($"Positive Recall: {metrics.PositiveRecall:F2}\n");
Dynamic\Trainers\BinaryClassification\SgdCalibratedWithOptions.cs (1)
150Console.WriteLine($"Positive Recall: {metrics.PositiveRecall:F2}\n");
Dynamic\Trainers\BinaryClassification\SgdNonCalibrated.cs (1)
138Console.WriteLine($"Positive Recall: {metrics.PositiveRecall:F2}\n");
Dynamic\Trainers\BinaryClassification\SgdNonCalibratedWithOptions.cs (1)
147Console.WriteLine($"Positive Recall: {metrics.PositiveRecall:F2}\n");
Dynamic\Trainers\BinaryClassification\SymbolicSgdLogisticRegression.cs (1)
141Console.WriteLine($"Positive Recall: {metrics.PositiveRecall:F2}\n");
Dynamic\Trainers\BinaryClassification\SymbolicSgdLogisticRegressionWithOptions.cs (1)
150Console.WriteLine($"Positive Recall: {metrics.PositiveRecall:F2}\n");
Microsoft.ML.Transforms (4)
MetricStatistics.cs (2)
160/// Summary statistics for <see cref="BinaryClassificationMetrics.PositiveRecall"/>. 205PositiveRecall.Add(metrics.PositiveRecall);
PermutationFeatureImportanceExtensions.cs (2)
318positiveRecall: a.PositiveRecall - b.PositiveRecall,