6 references to RightChild
Microsoft.ML.FastTree (4)
RegressionTree.cs (2)
29/// See <see cref="RightChild"/>. 70/// <see cref="RightChild"/>[i] is the i-th node's child index used when the two conditions, (1) and (2),
Utils\RegressionTreeBaseUtils.cs (2)
58rightChild.AddRange(trees[i].RightChild.AsEnumerable()); 104builder.AddColumn(nameof(RegressionTreeBase.RightChild), NumberDataViewType.Int32, rightChild.ToArray());
Microsoft.ML.IntegrationTests (1)
IntrospectiveTraining.cs (1)
116Assert.Equal(finalTree.RightChild, new int[] { 1, 3, -4, -5 });
Microsoft.ML.Tests (1)
TrainerEstimators\TreeEstimators.cs (1)
823Assert.Equal(row.RightChild, tree.RightChild[nodeId]);