File tree 1 file changed +5
-4
lines changed
src/Microsoft.ML.FastTree/Representation
1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,8 @@ public class TreeRegressor
17
17
private readonly RegressionTree _tree ;
18
18
19
19
/// <summary>
20
- /// Sample labels from training data. <see cref="_leafSamples"/>[i] stores the labels falling into the i-th leaf.
20
+ /// Sample labels from training data. <see cref="_leafSamples"/>[i] stores the labels falling into the
21
+ /// i-th leaf.
21
22
/// </summary>
22
23
private readonly double [ ] [ ] _leafSamples ;
23
24
/// <summary>
@@ -68,9 +69,9 @@ public class TreeRegressor
68
69
public ReadOnlySpan < double > LeafValues => new ReadOnlySpan < double > ( _tree . LeafValues , 0 , _tree . NumLeaves ) ;
69
70
/// <summary>
70
71
/// Return categorical thresholds used at node indexed by nodeIndex. If the considered input feature does NOT
71
- /// matche any of values returned by <see cref="GetCategoricalSplitFeaturesAt(int)"/>, we call it a less-than-threshold
72
- /// event and therefore <see cref="LteChild"/>[nodeIndex] is the child node that input should go next. The returned
73
- /// value is valid only if <see cref="CategoricalSplitFlags"/>[nodeIndex] is true.
72
+ /// matche any of values returned by <see cref="GetCategoricalSplitFeaturesAt(int)"/>, we call it a
73
+ /// less-than-threshold event and therefore <see cref="LteChild"/>[nodeIndex] is the child node that input
74
+ /// should go next. The returned value is valid only if <see cref="CategoricalSplitFlags"/>[nodeIndex] is true.
74
75
/// </summary>
75
76
public ReadOnlySpan < int > GetCategoricalSplitFeaturesAt ( int nodeIndex ) => new ReadOnlySpan < int > ( _tree . CategoricalSplitFeatures [ nodeIndex ] ) ;
76
77
/// <summary>
You can’t perform that action at this time.
0 commit comments