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