3 overrides of AccumulateOneGradient
Microsoft.ML.StandardTrainers (3)
Standard\LogisticRegression\LogisticRegression.cs (1)
190private protected override float AccumulateOneGradient(in VBuffer<float> feat, float label, float weight,
Standard\LogisticRegression\MulticlassLogisticRegression.cs (1)
244private protected override float AccumulateOneGradient(in VBuffer<float> feat, float label, float weight,
Standard\PoissonRegression\PoissonRegression.cs (1)
166private protected override float AccumulateOneGradient(in VBuffer<float> feat, float label, float weight,
3 references to AccumulateOneGradient
Microsoft.ML.StandardTrainers (3)
Standard\LogisticRegression\LbfgsPredictorBase.cs (3)
392AccumulateOneGradient(in cursor.Features, cursor.Label, cursor.Weight, in x, ref grad, ref scratch); 852loss += AccumulateOneGradient(in _features[iv], _labels[iv], weight, in xDense, ref grad, ref scratch); 876loss += AccumulateOneGradient(in cursor.Features, cursor.Label, cursor.Weight,