2 writes to NegativeRecall
Microsoft.ML.Data (2)
Evaluators\Metrics\BinaryClassificationMetrics.cs (2)
106
NegativeRecall
= Fetch(BinaryClassifierEvaluator.NegRecallName);
121
NegativeRecall
= negativeRecall;
43 references to NegativeRecall
Microsoft.ML.AutoML (5)
API\BinaryClassificationExperiment.cs (2)
96
/// See <see cref="BinaryClassificationMetrics.
NegativeRecall
"/>.
480
BinaryClassificationMetric.NegativeRecall => metrics.
NegativeRecall
,
AutoMLExperiment\IMetricManager.cs (1)
65
BinaryClassificationMetric.NegativeRecall => metric.
NegativeRecall
,
Experiment\MetricsAgents\BinaryMetricsAgent.cs (1)
41
return metrics.
NegativeRecall
;
Experiment\Runners\CrossValSummaryRunner.cs (1)
107
negativeRecall: GetAverageOfNonNaNScores(newMetrics.Select(x => x.
NegativeRecall
)),
Microsoft.ML.AutoML.Samples (3)
AutoFit\BinaryClassificationExperiment.cs (1)
69
Console.WriteLine($"NegativeRecall: {metrics.
NegativeRecall
}");
AutoMLExperiment.cs (1)
136
Console.WriteLine($"Negative Recall: {metrics.
NegativeRecall
:F2}");
Sweepable\SweepableLightGBMBinaryExperiment.cs (1)
163
Console.WriteLine($"Negative Recall: {metrics.
NegativeRecall
:F2}");
Microsoft.ML.Fairlearn (2)
Metrics\FairlearnMetricCatalog.cs (2)
106
result["NegRecall"] = DataFrameColumn.Create("NegRecall", groupMetric.Keys.Select(k => groupMetric[k].
NegativeRecall
));
125
{ "NegRecall", metrics.
NegativeRecall
},
Microsoft.ML.IntegrationTests (1)
Common.cs (1)
183
Assert.InRange(metrics.
NegativeRecall
, 0, 1);
Microsoft.ML.Samples (28)
Dynamic\Trainers\BinaryClassification\AveragedPerceptron.cs (1)
134
Console.WriteLine($"Negative Recall: {metrics.
NegativeRecall
:F2}");
Dynamic\Trainers\BinaryClassification\AveragedPerceptronWithOptions.cs (1)
145
Console.WriteLine($"Negative Recall: {metrics.
NegativeRecall
:F2}");
Dynamic\Trainers\BinaryClassification\FactorizationMachine.cs (1)
142
Console.WriteLine($"Negative Recall: {metrics.
NegativeRecall
:F2}");
Dynamic\Trainers\BinaryClassification\FastForest.cs (1)
137
Console.WriteLine($"Negative Recall: {metrics.
NegativeRecall
:F2}");
Dynamic\Trainers\BinaryClassification\FastForestWithOptions.cs (1)
149
Console.WriteLine($"Negative Recall: {metrics.
NegativeRecall
:F2}");
Dynamic\Trainers\BinaryClassification\FastTree.cs (1)
140
Console.WriteLine($"Negative Recall: {metrics.
NegativeRecall
:F2}");
Dynamic\Trainers\BinaryClassification\FastTreeWithOptions.cs (1)
152
Console.WriteLine($"Negative Recall: {metrics.
NegativeRecall
:F2}");
Dynamic\Trainers\BinaryClassification\FieldAwareFactorizationMachine.cs (1)
201
Console.WriteLine($"Negative Recall: {metrics.
NegativeRecall
:F2}");
Dynamic\Trainers\BinaryClassification\FieldAwareFactorizationMachineWithOptions.cs (1)
212
Console.WriteLine($"Negative Recall: {metrics.
NegativeRecall
:F2}");
Dynamic\Trainers\BinaryClassification\LbfgsLogisticRegression.cs (1)
137
Console.WriteLine($"Negative Recall: {metrics.
NegativeRecall
:F2}");
Dynamic\Trainers\BinaryClassification\LbfgsLogisticRegressionWithOptions.cs (1)
146
Console.WriteLine($"Negative Recall: {metrics.
NegativeRecall
:F2}");
Dynamic\Trainers\BinaryClassification\LdSvm.cs (1)
134
Console.WriteLine($"Negative Recall: {metrics.
NegativeRecall
:F2}");
Dynamic\Trainers\BinaryClassification\LdSvmWithOptions.cs (1)
143
Console.WriteLine($"Negative Recall: {metrics.
NegativeRecall
:F2}");
Dynamic\Trainers\BinaryClassification\LightGbm.cs (1)
137
Console.WriteLine($"Negative Recall: {metrics.
NegativeRecall
:F2}");
Dynamic\Trainers\BinaryClassification\LightGbmWithOptions.cs (1)
148
Console.WriteLine($"Negative Recall: {metrics.
NegativeRecall
:F2}");
Dynamic\Trainers\BinaryClassification\LinearSvm.cs (1)
134
Console.WriteLine($"Negative Recall: {metrics.
NegativeRecall
:F2}");
Dynamic\Trainers\BinaryClassification\LinearSvmWithOptions.cs (1)
143
Console.WriteLine($"Negative Recall: {metrics.
NegativeRecall
:F2}");
Dynamic\Trainers\BinaryClassification\PriorTrainer.cs (1)
134
Console.WriteLine($"Negative Recall: {metrics.
NegativeRecall
:F2}");
Dynamic\Trainers\BinaryClassification\SdcaLogisticRegression.cs (1)
142
Console.WriteLine($"Negative Recall: {metrics.
NegativeRecall
:F2}");
Dynamic\Trainers\BinaryClassification\SdcaLogisticRegressionWithOptions.cs (1)
154
Console.WriteLine($"Negative Recall: {metrics.
NegativeRecall
:F2}");
Dynamic\Trainers\BinaryClassification\SdcaNonCalibrated.cs (1)
141
Console.WriteLine($"Negative Recall: {metrics.
NegativeRecall
:F2}");
Dynamic\Trainers\BinaryClassification\SdcaNonCalibratedWithOptions.cs (1)
156
Console.WriteLine($"Negative Recall: {metrics.
NegativeRecall
:F2}");
Dynamic\Trainers\BinaryClassification\SgdCalibrated.cs (1)
134
Console.WriteLine($"Negative Recall: {metrics.
NegativeRecall
:F2}");
Dynamic\Trainers\BinaryClassification\SgdCalibratedWithOptions.cs (1)
146
Console.WriteLine($"Negative Recall: {metrics.
NegativeRecall
:F2}");
Dynamic\Trainers\BinaryClassification\SgdNonCalibrated.cs (1)
134
Console.WriteLine($"Negative Recall: {metrics.
NegativeRecall
:F2}");
Dynamic\Trainers\BinaryClassification\SgdNonCalibratedWithOptions.cs (1)
143
Console.WriteLine($"Negative Recall: {metrics.
NegativeRecall
:F2}");
Dynamic\Trainers\BinaryClassification\SymbolicSgdLogisticRegression.cs (1)
137
Console.WriteLine($"Negative Recall: {metrics.
NegativeRecall
:F2}");
Dynamic\Trainers\BinaryClassification\SymbolicSgdLogisticRegressionWithOptions.cs (1)
146
Console.WriteLine($"Negative Recall: {metrics.
NegativeRecall
:F2}");
Microsoft.ML.Transforms (4)
MetricStatistics.cs (2)
170
/// Summary statistics for <see cref="BinaryClassificationMetrics.
NegativeRecall
"/>.
207
NegativeRecall.Add(metrics.
NegativeRecall
);
PermutationFeatureImportanceExtensions.cs (2)
320
negativeRecall: a.
NegativeRecall
- b.
NegativeRecall
,