1 write to UnweightedCounters
Microsoft.ML.Data (1)
Evaluators\BinaryClassifierEvaluator.cs (1)
581
UnweightedCounters
= new Counters(useRaw, threshold);
14 references to UnweightedCounters
Microsoft.ML.Data (14)
Evaluators\BinaryClassifierEvaluator.cs (14)
265
accuracy.Add(agg.
UnweightedCounters
.Acc);
266
posPrec.Add(agg.
UnweightedCounters
.PrecisionPos);
267
posRecall.Add(agg.
UnweightedCounters
.RecallPos);
268
negPrec.Add(agg.
UnweightedCounters
.PrecisionNeg);
269
negRecall.Add(agg.
UnweightedCounters
.RecallNeg);
270
logLoss.Add(agg.
UnweightedCounters
.LogLoss);
271
logLossRed.Add(agg.
UnweightedCounters
.LogLossReduction);
272
entropy.Add(agg.
UnweightedCounters
.Entropy);
273
f1.Add(agg.
UnweightedCounters
.F1);
279
counts.Add(new[] { agg.
UnweightedCounters
.NumTruePos, agg.
UnweightedCounters
.NumFalseNeg });
280
counts.Add(new[] { agg.
UnweightedCounters
.NumFalsePos, agg.
UnweightedCounters
.NumTrueNeg });
677
UnweightedCounters
.Update(_score, prob, _label, logloss, 1);