1 write to WeightedCounters
Microsoft.ML.Data (1)
Evaluators\BinaryClassifierEvaluator.cs (1)
582
WeightedCounters
= weighted ? new Counters(useRaw, threshold) : null;
14 references to WeightedCounters
Microsoft.ML.Data (14)
Evaluators\BinaryClassifierEvaluator.cs (14)
304
accuracy.Add(agg.
WeightedCounters
.Acc);
305
posPrec.Add(agg.
WeightedCounters
.PrecisionPos);
306
posRecall.Add(agg.
WeightedCounters
.RecallPos);
307
negPrec.Add(agg.
WeightedCounters
.PrecisionNeg);
308
negRecall.Add(agg.
WeightedCounters
.RecallNeg);
309
logLoss.Add(agg.
WeightedCounters
.LogLoss);
310
logLossRed.Add(agg.
WeightedCounters
.LogLossReduction);
311
entropy.Add(agg.
WeightedCounters
.Entropy);
312
f1.Add(agg.
WeightedCounters
.F1);
315
weights.Add(new[] { agg.
WeightedCounters
.NumTruePos, agg.
WeightedCounters
.NumFalseNeg });
316
weights.Add(new[] { agg.
WeightedCounters
.NumFalsePos, agg.
WeightedCounters
.NumTrueNeg });
689
WeightedCounters
.Update(_score, prob, _label, logloss, _weight);