5 writes to LearningRate
Microsoft.ML.Samples (1)
Dynamic\Trainers\BinaryClassification\AveragedPerceptronWithOptions.cs (1)
31
LearningRate
= 0.1f,
Microsoft.ML.StandardTrainers (3)
Standard\Online\AveragedPerceptron.cs (1)
183
LearningRate
= learningRate,
Standard\Online\OnlineGradientDescent.cs (2)
88
LearningRate
= OgdDefaultArgs.LearningRate;
149
LearningRate
= learningRate,
Microsoft.ML.Tests (1)
TrainerEstimators\OnlineLinearTests.cs (1)
43
new AveragedPerceptronTrainer.Options {
LearningRate
= 0.5f });
5 references to LearningRate
Microsoft.ML.StandardTrainers (5)
Standard\Online\AveragedLinear.cs (5)
34
/// Determine whether to decrease the <see cref="
LearningRate
"/> or not.
37
/// <see langword="true" /> to decrease the <see cref="
LearningRate
"/> as iterations progress; otherwise, <see langword="false" />.
245
float rate = _args.
LearningRate
;
309
Contracts.CheckUserArg(options.
LearningRate
> 0, nameof(options.
LearningRate
), UserErrorPositive);