9 instantiations of Options
Microsoft.ML.AutoML (1)
SweepableEstimator\Estimators\LightGbm.cs (1)
41var option = new LightGbmBinaryTrainer.Options()
Microsoft.ML.LightGbm (2)
LightGbmBinaryTrainer.cs (2)
220new Options() 244new Options()
Microsoft.ML.Samples (1)
Dynamic\Trainers\BinaryClassification\LightGbmWithOptions.cs (1)
31var options = new LightGbmBinaryTrainer.Options
Microsoft.ML.Tests (5)
TrainerEstimators\TreeEstimators.cs (5)
64var trainer = ML.BinaryClassification.Trainers.LightGbm(new LightGbmBinaryTrainer.Options 86var trainer = ML.BinaryClassification.Trainers.LightGbm(new LightGbmBinaryTrainer.Options 112var trainer = ML.BinaryClassification.Trainers.LightGbm(new LightGbmBinaryTrainer.Options 1050new LightGbmBinaryTrainer.Options 1085new LightGbmBinaryTrainer.Options
13 references to Options
Microsoft.ML.AutoML (3)
SweepableEstimator\Estimators\LightGbm.cs (1)
41var option = new LightGbmBinaryTrainer.Options()
TrainerExtensions\BinaryTrainerExtensions.cs (2)
118LightGbmBinaryTrainer.Options options = TrainerExtensionUtil.CreateLightGbmOptions<LightGbmBinaryTrainer.Options, float, BinaryPredictionTransformer<CalibratedModelParametersBase<LightGbmBinaryModelParameters, PlattCalibrator>>, CalibratedModelParametersBase<LightGbmBinaryModelParameters, PlattCalibrator>>(sweepParams, columnInfo);
Microsoft.ML.LightGbm (9)
LightGbmBinaryTrainer.cs (8)
18[assembly: LoadableClass(LightGbmBinaryTrainer.Summary, typeof(LightGbmBinaryTrainer), typeof(LightGbmBinaryTrainer.Options), 113/// <seealso cref="LightGbmExtensions.LightGbm(BinaryClassificationCatalog.BinaryClassificationTrainers, LightGbmBinaryTrainer.Options)"/> 114public sealed class LightGbmBinaryTrainer : LightGbmTrainerBase<LightGbmBinaryTrainer.Options, float, 193internal LightGbmBinaryTrainer(IHostEnvironment env, Options options) 196Contracts.CheckUserArg(options.Sigmoid > 0, nameof(Options.Sigmoid), "must be > 0."); 197Contracts.CheckUserArg(options.WeightOfPositiveExamples > 0, nameof(Options.WeightOfPositiveExamples), "must be > 0."); 314public static CommonOutputs.BinaryClassificationOutput TrainBinary(IHostEnvironment env, LightGbmBinaryTrainer.Options input) 321return TrainerEntryPointsUtils.Train<LightGbmBinaryTrainer.Options, CommonOutputs.BinaryClassificationOutput>(host, input,
LightGbmCatalog.cs (1)
132LightGbmBinaryTrainer.Options options)
Microsoft.ML.Samples (1)
Dynamic\Trainers\BinaryClassification\LightGbmWithOptions.cs (1)
31var options = new LightGbmBinaryTrainer.Options