14 writes to MinimumExampleCountPerLeaf
Microsoft.ML.AutoML (3)
SweepableEstimator\Estimators\LightGbm.cs (3)
17
MinimumExampleCountPerLeaf
= param.MinimumExampleCountPerLeaf,
45
MinimumExampleCountPerLeaf
= param.MinimumExampleCountPerLeaf,
73
MinimumExampleCountPerLeaf
= param.MinimumExampleCountPerLeaf,
Microsoft.ML.LightGbm (5)
LightGbmBinaryTrainer.cs (1)
226
MinimumExampleCountPerLeaf
= minimumExampleCountPerLeaf,
LightGbmMulticlassTrainer.cs (1)
167
MinimumExampleCountPerLeaf
= minimumExampleCountPerLeaf,
LightGbmRankingTrainer.cs (1)
211
MinimumExampleCountPerLeaf
= minimumExampleCountPerLeaf,
LightGbmRegressionTrainer.cs (1)
184
MinimumExampleCountPerLeaf
= minimumExampleCountPerLeaf,
LightGbmTrainerBase.cs (1)
330
MinimumExampleCountPerLeaf
= minimumExampleCountPerLeaf,
Microsoft.ML.Samples (2)
Dynamic\Trainers\Regression\LightGbmWithOptions.cs (1)
38
MinimumExampleCountPerLeaf
= 6,
Dynamic\Trainers\Regression\LightGbmWithOptionsAdvanced.cs (1)
47
MinimumExampleCountPerLeaf
= 6,
Microsoft.ML.Tests (4)
TrainerEstimators\TreeEstimators.cs (4)
67
MinimumExampleCountPerLeaf
= 2,
89
MinimumExampleCountPerLeaf
= 2,
115
MinimumExampleCountPerLeaf
= 2,
468
MinimumExampleCountPerLeaf
= 1,
7 references to MinimumExampleCountPerLeaf
Microsoft.ML.LightGbm (7)
LightGbmMulticlassTrainer.cs (3)
321
int minimumExampleCountPerLeaf = LightGbmTrainerOptions.
MinimumExampleCountPerLeaf
?? DefaultMinDataPerLeaf(numRow, numberOfLeaves, _numberOfClassesIncludingNan);
329
if (!LightGbmTrainerOptions.
MinimumExampleCountPerLeaf
.HasValue)
330
ch.Info("Auto-tuning parameters: " + nameof(LightGbmTrainerOptions.
MinimumExampleCountPerLeaf
) + " = " + minimumExampleCountPerLeaf);
LightGbmTrainerBase.cs (4)
56
{nameof(
MinimumExampleCountPerLeaf
), "min_data_per_leaf"},
509
int minimumExampleCountPerLeaf = LightGbmTrainerOptions.
MinimumExampleCountPerLeaf
?? DefaultMinDataPerLeaf(numRow, numberOfLeaves, 1);
519
if (!LightGbmTrainerOptions.
MinimumExampleCountPerLeaf
.HasValue)
520
ch.Info("Auto-tuning parameters: " + nameof(LightGbmTrainerOptions.
MinimumExampleCountPerLeaf
) + " = " + minimumExampleCountPerLeaf);