1 write to Tree
Microsoft.ML.FastTree (1)
Training\RegressionTreeNodeDocuments.cs (1)
26Tree = tree;
13 references to Tree
Microsoft.ML.FastTree (13)
Training\RegressionTreeNodeDocuments.cs (13)
34_documentCount = Tree.GetNodesLeaves(NodeIndex).Sum(leaf => Partitioning.NumDocsInLeaf(leaf)); 42Tree.UpdateOutputWithDelta(~NodeIndex, delta); 56return Tree.GetNodesLeaves(NodeIndex).Select(l => new RegressionTreeNodeDocuments(Tree, Partitioning, ~l)); 70foreach (var leaf in Tree.GetNodesLeaves(NodeIndex)) 103LteNode = new RecursiveRegressionTree(Tree, Partitioning, Tree.GetLteChildForNode(NodeIndex)); 104GtNode = new RecursiveRegressionTree(Tree, Partitioning, Tree.GetGtChildForNode(NodeIndex)); 116Tree.SetOutput(~NodeIndex, myOutput); 132return Tree.GetOutput(~NodeIndex); 151Tree.SetOutput(~NodeIndex, myOutput); 172return Tree.GetOutput(~NodeIndex);