8 references to NumericalSplitFeatureIndexes
Microsoft.ML.FastTree (6)
RegressionTree.cs (4)
33
/// See <see cref="
NumericalSplitFeatureIndexes
"/>.
55
/// (1) the numerical feature indexed by <see cref="
NumericalSplitFeatureIndexes
"/>[i] is less than or equal
77
/// <see cref="
NumericalSplitFeatureIndexes
"/>[i] is the feature index used the splitting function of the
84
/// <see cref="
NumericalSplitFeatureIndexes
"/>[i], where i is the i-th node's index
Utils\RegressionTreeBaseUtils.cs (2)
62
numericalSplitFeatureIndexes.AddRange(trees[i].
NumericalSplitFeatureIndexes
.AsEnumerable());
105
builder.AddColumn(nameof(RegressionTreeBase.
NumericalSplitFeatureIndexes
), NumberDataViewType.Int32, numericalSplitFeatureIndexes.ToArray());
Microsoft.ML.IntegrationTests (1)
IntrospectiveTraining.cs (1)
117
Assert.Equal(finalTree.
NumericalSplitFeatureIndexes
, new int[] { 14, 294, 633, 266 });
Microsoft.ML.Tests (1)
TrainerEstimators\TreeEstimators.cs (1)
824
Assert.Equal(row.NumericalSplitFeatureIndexes, tree.
NumericalSplitFeatureIndexes
[nodeId]);