2 writes to Lambda
Microsoft.ML.Tests (2)
TrainerEstimators\MatrixFactorizationTests.cs (2)
457
Lambda
= 0.025, // Let's test non-default regularization coefficient.
601
Lambda
= 0.025, // Let's test non-default regularization coefficient.
7 references to Lambda
Microsoft.ML.AutoML (1)
TrainerExtensions\SweepableParams.cs (1)
127
new SweepableDiscreteParam(nameof(MatrixFactorizationTrainer.Options.
Lambda
), new object[] { 0.01f, 0.05f, 0.1f, 0.5f, 1f }),
Microsoft.ML.CodeGenerator.Tests (2)
ApprovalTests\ConsoleCodeGeneratorTests.cs (1)
553
{nameof(MatrixFactorizationTrainer.Options.
Lambda
), 0.01f },
TrainerGeneratorTests.cs (1)
308
{nameof(MatrixFactorizationTrainer.Options.
Lambda
), 0.01f },
Microsoft.ML.Recommender (4)
MatrixFactorizationTrainer.cs (4)
355
_host.CheckUserArg(options.
Lambda
> 0, nameof(options.
Lambda
), posError);
360
_lambda = options.
Lambda
;
406
_lambda = args.
Lambda
;