1 write to ParallelTraining
Microsoft.ML.FastTree (1)
FastTree.cs (1)
180ParallelTraining = FastTreeTrainerOptions.ParallelTrainer != null ? FastTreeTrainerOptions.ParallelTrainer.CreateComponent(env) : new SingleTrainer();
8 references to ParallelTraining
Microsoft.ML.FastTree (8)
BoostingFastTree.cs (1)
70FastTreeTrainerOptions.MaximumCategoricalSplitPointCount, BsrMaxTreeOutput(), ParallelTraining,
FastTree.cs (4)
181ParallelTraining.InitEnvironment(); 194TrainSet = instanceConverter.FindBinsAndReturnDataset(trainData, PredictionKind, ParallelTraining, CategoricalFeatures, FastTreeTrainerOptions.CategoricalSplit); 236ParallelTraining.FinalizeEnvironment(); 765ParallelTraining.FinalizeTreeLearner();
FastTreeClassification.cs (1)
229ParallelTraining);
FastTreeRanking.cs (1)
207return new LambdaRankObjectiveFunction(TrainSet, TrainSet.Ratings, FastTreeTrainerOptions, ParallelTraining);
RandomForest.cs (1)
70FastTreeTrainerOptions.MaximumCategoricalSplitPointCount, _quantileEnabled, FastTreeTrainerOptions.NumberOfQuantileSamples, ParallelTraining,