5 references to L2LowerBound
Microsoft.ML.StandardTrainers (5)
Standard\SdcaBinary.cs (5)
248
if (L2Regularization <
L2LowerBound
)
252
ch.Warning($"The L2 regularization constant must be at least {
L2LowerBound
}. In SDCA, the dual formulation " +
253
$"is only valid with a positive constant, and values below {
L2LowerBound
} cause very slow convergence. " +
254
$"The original {nameof(L2Regularization)} = {L2Regularization}, was replaced with {nameof(L2Regularization)} = {
L2LowerBound
}.");
255
L2Regularization =
L2LowerBound
;