4 writes to _gainPValue
Microsoft.ML.FastTree (4)
TreeEnsemble\InternalRegressionTree.cs (4)
88
_gainPValue
= new double[maxLeaves - 1];
123
_gainPValue
= buffer.ToDoubleArray(ref position);
202
_gainPValue
= gainPValue;
310
_gainPValue
= reader.ReadDoubleArray();
9 references to _gainPValue
Microsoft.ML.FastTree (9)
TreeEnsemble\InternalRegressionTree.cs (9)
58
public double[] GainPValues { get { return
_gainPValue
; } }
409
writer.WriteDoubleArray(
_gainPValue
);
501
checker(Utils.Size(
_gainPValue
) == 0 ||
_gainPValue
.Length == numMaxNodes, "bad gainpvalue length");
521
_gainPValue
.SizeInBytes() +
551
_gainPValue
.ToByteArray(buffer, ref position);
1055
_gainPValue
[indexOfNewNonLeaf] = gainPValue;
1187
StringBuilder sbGainPValue =
_gainPValue
!= null ? new StringBuilder("\nGainPValue=") : null;
1214
sbGainPValue?.Append(
_gainPValue
[n].ToString("0.000e00") + toAppend);