9 references to NumericalSplitThresholds
Microsoft.ML.FastTree (5)
RegressionTree.cs (3)
37
/// See <see cref="
NumericalSplitThresholds
"/>.
56
/// to the threshold <see cref="
NumericalSplitThresholds
"/>[i], or
83
/// <see cref="
NumericalSplitThresholds
"/>[i] is the threshold on feature indexed by
Utils\RegressionTreeBaseUtils.cs (2)
66
numericalSplitThresholds.AddRange(trees[i].
NumericalSplitThresholds
.AsEnumerable());
106
builder.AddColumn(nameof(RegressionTreeBase.
NumericalSplitThresholds
), NumberDataViewType.Single, numericalSplitThresholds.ToArray());
Microsoft.ML.IntegrationTests (3)
IntrospectiveTraining.cs (3)
60
Assert.Equal(tree.
NumericalSplitThresholds
.Count, tree.NumberOfNodes);
104
Assert.Equal(tree.
NumericalSplitThresholds
.Count, tree.NumberOfNodes);
123
Assert.Equal((double)expectedThresholds[i], (double)finalTree.
NumericalSplitThresholds
[i], 0.000001);
Microsoft.ML.Tests (1)
TrainerEstimators\TreeEstimators.cs (1)
825
Assert.Equal(row.NumericalSplitThresholds, tree.
NumericalSplitThresholds
[nodeId]);