1 instantiation of Booster
Microsoft.ML.LightGbm (1)
WrappedLightGbmTraining.cs (1)
23
Booster bst = new
Booster
(parameters, dtrain, dvalid);
11 references to Booster
Microsoft.ML.LightGbm (10)
LightGbmArguments.cs (3)
213
/// The options for <see cref="GradientBooster"/>, used for setting <see cref="
Booster
"/>.
243
/// The options for <see cref="DartBooster"/>, used for setting <see cref="
Booster
"/>.
319
/// The options for <see cref="GossBooster"/>, used for setting <see cref="
Booster
"/>.
LightGbmTrainerBase.cs (5)
391
var modelParameters =
Booster
.GetParameters(modelText);
430
TrainedEnsemble =
Booster
.GetModel(catBoundaries, modelText);
431
FeatureCount =
Booster
.GetNumFeatures(modelText);
711
using (
Booster
bst = WrappedLightGbmTraining.Train(Host, ch, pch, GbmOptions, dtrain,
715
TrainedEnsemble =
Booster
.GetModel(catMetaData.CategoricalBoudaries, bst.GetModelString());
WrappedLightGbmTraining.cs (2)
18
public static
Booster
Train(IHost host, IChannel ch, IProgressChannel pch,
23
Booster
bst = new Booster(parameters, dtrain, dvalid);
Microsoft.ML.Tests (1)
TrainerEstimators\TreeEstimators.cs (1)
526
using (
var
gbmNative = WrappedLightGbmTraining.Train(host, ch, pch, gbmParams, gbmDataSet, numIteration: numberOfTrainingIterations))