1 write to _args
Microsoft.ML.StandardTrainers (1)
Standard\Online\AveragedLinear.cs (1)
173_args = parent.AveragedLinearTrainerOptions;
14 references to _args
Microsoft.ML.StandardTrainers (14)
Standard\Online\AveragedLinear.cs (14)
196if (_args.LazyUpdate && NumNoUpdates > 0) 208if (_args.ResetWeightsAfterXExamples == 0) 231if (loss != 0 || _args.L2Regularization > 0) 234if (_args.LazyUpdate && _args.Averaged && NumNoUpdates > 0 && TotalMultipliers * _args.AveragedTolerance <= PendingMultipliers) 245float rate = _args.LearningRate; 246if (_args.DecreaseLearningRate) 252WeightsScale *= 1 - 2 * _args.L2Regularization; // L2 regularization. 261if (!_args.LazyUpdate) 282if (_args.RecencyGain == 0) 292Gain = (_args.RecencyGainMultiplicative ? Gain * _args.RecencyGain : Gain + _args.RecencyGain);