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