8 references to GetLeafSamplesAt
Microsoft.ML.FastTree (6)
RegressionTree.cs (3)
187
/// things inherited from <see cref="RegressionTreeBase"/>, we add <see cref="
GetLeafSamplesAt
(int)"/>
221
/// Return the weights for training labels falling into the specified leaf. If <see cref="
GetLeafSamplesAt
"/>
223
/// the weight of the i-th label in <see cref="
GetLeafSamplesAt
"/>.
Utils\RegressionTreeBaseUtils.cs (3)
20
/// special treatment since it has some additional fields (<see cref="QuantileRegressionTree.
GetLeafSamplesAt
(int)"/>
128
var leafSamplesArray = quantileTrees[i].
GetLeafSamplesAt
(j).ToArray();
130
var len = quantileTrees[i].
GetLeafSamplesAt
(j).ToArray().Length;
Microsoft.ML.Tests (2)
TrainerEstimators\TreeEstimators.cs (2)
858
if (tree.
GetLeafSamplesAt
(nodeId).Count() > 0)
859
Assert.Equal(row.LeafSamples, tree.
GetLeafSamplesAt
(nodeId).ToArray());