4 references to NumDocsInLeaf
Microsoft.ML.FastTree (4)
Training\RegressionTreeNodeDocuments.cs (1)
34
_documentCount = Tree.GetNodesLeaves(NodeIndex).Sum(leaf => Partitioning.
NumDocsInLeaf
(leaf));
Training\TreeLearners\LeastSquaresRegressionTreeLearner.cs (3)
320
Contracts.Assert(bestSplitInfo.GTCount < 0 || Partitioning.
NumDocsInLeaf
(gtChild) == bestSplitInfo.GTCount
389
int numDocsInLteChild = partitioning.
NumDocsInLeaf
(lteChild);
390
int numDocsInGtChild = partitioning.
NumDocsInLeaf
(gtChild);