2 overrides of WeightedCounters
Microsoft.ML.Data (2)
Evaluators\QuantileRegressionEvaluator.cs (1)
217
public override CountersBase
WeightedCounters
{ get { return _weightedCounters; } }
Evaluators\RegressionEvaluator.cs (1)
141
public override CountersBase
WeightedCounters
{ get { return _weightedCounters; } }
7 references to WeightedCounters
Microsoft.ML.Data (7)
Evaluators\RegressionEvaluatorBase.cs (7)
83
l1.Add(agg.
WeightedCounters
.L1);
84
l2.Add(agg.
WeightedCounters
.L2);
85
rms.Add(agg.
WeightedCounters
.Rms);
86
loss.Add(agg.
WeightedCounters
.Loss);
87
rSquared.Add(agg.
WeightedCounters
.RSquared);
247
if (
WeightedCounters
!= null)
248
WeightedCounters
.Update(ref Score, label, weight, ref Loss);