File tree 2 files changed +4
-2
lines changed
src/Microsoft.ML.FastTree
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,9 @@ public abstract class RegressionTreeBase
56
56
/// Note that the case (1) happens only when <see cref="CategoricalSplitFlags"/>[i] is true and otherwise (2)
57
57
/// occurs. A non-negative returned value means a node (i.e., not a leaf); for example, 2 means the 3rd node in
58
58
/// the underlying <see cref="_tree"/>. A negative returned value means a leaf; for example, -1 stands for the
59
- /// first leaf in the underlying <see cref="_tree"/>.
59
+ /// <see langword="~"/>(-1)-th leaf in the underlying <see cref="_tree"/>. Note that <see langword="~"/> is the
60
+ /// bitwise complement operator in C#; for details, see
61
+ /// https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/operators/bitwise-complement-operator.
60
62
/// </summary>
61
63
public IReadOnlyList < int > LteChild => _lteChild ;
62
64
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ public abstract class TreeEnsemble<T> where T : RegressionTreeBase
29
29
/// </summary>
30
30
public IReadOnlyList < T > Trees { get ; }
31
31
32
- internal TreeEnsemble ( IEnumerable < T > trees , IEnumerable < double > treeWeights , double bias )
32
+ private protected TreeEnsemble ( IEnumerable < T > trees , IEnumerable < double > treeWeights , double bias )
33
33
{
34
34
Bias = bias ;
35
35
TreeWeights = treeWeights . ToList ( ) ;
You can’t perform that action at this time.
0 commit comments