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)
62numericalSplitFeatureIndexes.AddRange(trees[i].NumericalSplitFeatureIndexes.AsEnumerable()); 105builder.AddColumn(nameof(RegressionTreeBase.NumericalSplitFeatureIndexes), NumberDataViewType.Int32, numericalSplitFeatureIndexes.ToArray());
Microsoft.ML.IntegrationTests (1)
IntrospectiveTraining.cs (1)
117Assert.Equal(finalTree.NumericalSplitFeatureIndexes, new int[] { 14, 294, 633, 266 });
Microsoft.ML.Tests (1)
TrainerEstimators\TreeEstimators.cs (1)
824Assert.Equal(row.NumericalSplitFeatureIndexes, tree.NumericalSplitFeatureIndexes[nodeId]);