5 instantiations of DocumentPartitioning
Microsoft.ML.FastTree (5)
Training\BaggingProvider.cs (4)
54
CurrentTrainPartition = new
DocumentPartitioning
(trainDocs, trainSize, MaxLeaves);
55
CurrentOutOfBagPartition = new
DocumentPartitioning
(outOfBagDocs, outOfBagSize, MaxLeaves);
150
CurrentTrainPartition = new
DocumentPartitioning
(trainDocs, trainSize, MaxLeaves);
151
CurrentOutOfBagPartition = new
DocumentPartitioning
(outOfBagDocs, outOfBagSize, MaxLeaves);
Training\TreeLearners\TreeLearner.cs (1)
21
Partitioning = new
DocumentPartitioning
(TrainData.NumDocs, numLeaves);
23 references to DocumentPartitioning
Microsoft.ML.FastTree (23)
FastTreeClassification.cs (1)
399
DocumentPartitioning
partitioning, ScoreTracker trainingScores)
FastTreeRanking.cs (1)
928
void IStepSearch.AdjustTreeOutputs(IChannel ch, InternalRegressionTree tree,
DocumentPartitioning
partitioning,
FastTreeRegression.cs (1)
447
public void AdjustTreeOutputs(IChannel ch, InternalRegressionTree tree,
DocumentPartitioning
partitioning, ScoreTracker trainingScores)
FastTreeTweedie.cs (1)
401
public void AdjustTreeOutputs(IChannel ch, InternalRegressionTree tree,
DocumentPartitioning
partitioning, ScoreTracker trainingScores)
Training\BaggingProvider.cs (4)
12
protected
DocumentPartitioning
CurrentTrainPartition;
13
protected
DocumentPartitioning
CurrentOutOfBagPartition;
60
public
DocumentPartitioning
GetCurrentTrainingPartition()
65
public
DocumentPartitioning
GetCurrentOutOfBagPartition()
Training\Parallel\IParallelTraining.cs (1)
132
double[] GlobalMean(Dataset dataset, InternalRegressionTree tree,
DocumentPartitioning
partitioning, double[] weights, bool filterZeroLambdas);
Training\Parallel\SingleTrainer.cs (1)
49
double[] IParallelTraining.GlobalMean(Dataset dataset, InternalRegressionTree tree,
DocumentPartitioning
partitioning, double[] weights, bool filterZeroLambdas)
Training\RegressionTreeNodeDocuments.cs (3)
19
internal readonly
DocumentPartitioning
Partitioning;
24
internal RegressionTreeNodeDocuments(InternalRegressionTree tree,
DocumentPartitioning
partitioning, int nodeIndex)
96
internal RecursiveRegressionTree(InternalRegressionTree t,
DocumentPartitioning
p, int n)
Training\ScoreTracker.cs (3)
41
internal void Initialize(ScoreTracker scores1, InternalRegressionTree tree,
DocumentPartitioning
partitioning, double multiplier)
103
internal virtual void AddScores(InternalRegressionTree tree,
DocumentPartitioning
partitioning, double multiplier)
198
internal override void AddScores(InternalRegressionTree tree,
DocumentPartitioning
partitioning, double multiplier)
Training\StepSearch.cs (4)
13
void AdjustTreeOutputs(IChannel ch, InternalRegressionTree tree,
DocumentPartitioning
partitioning, ScoreTracker trainingScores);
63
private
DocumentPartitioning
_partitioning;
66
public void Initialize(InternalRegressionTree tree,
DocumentPartitioning
partitioning, ScoreTracker previousScores)
97
void IStepSearch.AdjustTreeOutputs(IChannel ch, InternalRegressionTree tree,
DocumentPartitioning
partitioning,
Training\TreeLearners\LeastSquaresRegressionTreeLearner.cs (2)
384
protected virtual void FindBestSplitOfSiblings(int lteChild, int gtChild,
DocumentPartitioning
partitioning, double[] targets)
911
public void Initialize(int leafIndex,
DocumentPartitioning
partitioning, double[] targets, double[] weights, bool filterZeros)
Training\TreeLearners\TreeLearner.cs (1)
15
public
DocumentPartitioning
Partitioning;