2 overrides of UnweightedCounters
Microsoft.ML.Data (2)
Evaluators\QuantileRegressionEvaluator.cs (1)
215
public override CountersBase
UnweightedCounters
{ get { return _counters; } }
Evaluators\RegressionEvaluator.cs (1)
139
public override CountersBase
UnweightedCounters
{ get { return _counters; } }
6 references to UnweightedCounters
Microsoft.ML.Data (6)
Evaluators\RegressionEvaluatorBase.cs (6)
73
l1.Add(agg.
UnweightedCounters
.L1);
74
l2.Add(agg.
UnweightedCounters
.L2);
75
rms.Add(agg.
UnweightedCounters
.Rms);
76
loss.Add(agg.
UnweightedCounters
.Loss);
77
rSquared.Add(agg.
UnweightedCounters
.RSquared);
246
UnweightedCounters
.Update(ref Score, label, 1, ref Loss);