3 instantiations of Options
Microsoft.ML.Samples (3)
Dynamic\Trainers\BinaryClassification\LightGbmWithOptions.cs (1)
33Booster = new GossBooster.Options
Dynamic\Trainers\Regression\LightGbmWithOptions.cs (1)
43Booster = new Microsoft.ML.Trainers.LightGbm.GossBooster.Options()
Dynamic\Trainers\Regression\LightGbmWithOptionsAdvanced.cs (1)
49Booster = new GossBooster.Options()
5 references to Options
Microsoft.ML.LightGbm (5)
LightGbmArguments.cs (5)
18[assembly: LoadableClass(typeof(GossBooster), typeof(GossBooster.Options), 23[assembly: EntryPointModule(typeof(GossBooster.Options))] 341internal GossBooster(Options options) 344Contracts.CheckUserArg(options.TopRate > 0 && options.TopRate < 1, nameof(Options.TopRate), "must be in (0,1)."); 345Contracts.CheckUserArg(options.OtherRate >= 0 && options.OtherRate < 1, nameof(Options.OtherRate), "must be in [0,1).");