5 writes to LearningRate
Microsoft.ML.Samples (1)
Dynamic\Trainers\BinaryClassification\AveragedPerceptronWithOptions.cs (1)
31LearningRate = 0.1f,
Microsoft.ML.StandardTrainers (3)
Standard\Online\AveragedPerceptron.cs (1)
183LearningRate = learningRate,
Standard\Online\OnlineGradientDescent.cs (2)
88LearningRate = OgdDefaultArgs.LearningRate; 149LearningRate = learningRate,
Microsoft.ML.Tests (1)
TrainerEstimators\OnlineLinearTests.cs (1)
43new 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" />. 245float rate = _args.LearningRate; 309Contracts.CheckUserArg(options.LearningRate > 0, nameof(options.LearningRate), UserErrorPositive);