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