9 references to LeftChild
Microsoft.ML.FastTree (7)
RegressionTree.cs (5)
25
/// See <see cref="
LeftChild
"/>.
54
/// <see cref="
LeftChild
"/>[i] is the i-th node's child index used when
71
/// described in <see cref="
LeftChild
"/>'s document are not true. Its return value follows the format
72
/// used in <see cref="
LeftChild
"/>.
103
/// less-than-threshold event and therefore <see cref="
LeftChild
"/>[nodeIndex] is the child node that input
Utils\RegressionTreeBaseUtils.cs (2)
54
leftChild.AddRange(trees[i].
LeftChild
.AsEnumerable());
103
builder.AddColumn(nameof(RegressionTreeBase.
LeftChild
), NumberDataViewType.Int32, leftChild.ToArray());
Microsoft.ML.IntegrationTests (1)
IntrospectiveTraining.cs (1)
115
Assert.Equal(finalTree.
LeftChild
, new int[] { 2, -2, -1, -3 });
Microsoft.ML.Tests (1)
TrainerEstimators\TreeEstimators.cs (1)
822
Assert.Equal(row.LeftChild, tree.
LeftChild
[nodeId]);