1 write to Partitioning
Microsoft.ML.FastTree (1)
Training\RegressionTreeNodeDocuments.cs (1)
27Partitioning = partitioning;
6 references to Partitioning
Microsoft.ML.FastTree (6)
Training\RegressionTreeNodeDocuments.cs (6)
34_documentCount = Tree.GetNodesLeaves(NodeIndex).Sum(leaf => Partitioning.NumDocsInLeaf(leaf)); 56return Tree.GetNodesLeaves(NodeIndex).Select(l => new RegressionTreeNodeDocuments(Tree, Partitioning, ~l)); 65documentsInNode = new HashSet<int>(Partitioning.DocumentsInLeaf(~NodeIndex)); 72var allDocsInLeaf = Partitioning.DocumentsInLeaf(leaf); 103LteNode = new RecursiveRegressionTree(Tree, Partitioning, Tree.GetLteChildForNode(NodeIndex)); 104GtNode = new RecursiveRegressionTree(Tree, Partitioning, Tree.GetGtChildForNode(NodeIndex));