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