7 references to GetLeafSampleWeightsAt
Microsoft.ML.FastTree (5)
RegressionTree.cs (2)
188
/// and <see cref="
GetLeafSampleWeightsAt
(int)"/> to expose (sub-sampled) training labels falling into
222
/// and <see cref="
GetLeafSampleWeightsAt
"/> use the same input, the i-th returned value of this function is
Utils\RegressionTreeBaseUtils.cs (3)
21
/// and <see cref="QuantileRegressionTree.
GetLeafSampleWeightsAt
(int)"/>).
132
var leafSampleWeightsArray = quantileTrees[i].
GetLeafSampleWeightsAt
(j).ToArray();
134
len = quantileTrees[i].
GetLeafSampleWeightsAt
(j).ToArray().Length;
Microsoft.ML.Tests (2)
TrainerEstimators\TreeEstimators.cs (2)
862
if (tree.
GetLeafSampleWeightsAt
(nodeId).Count() > 0)
863
Assert.Equal(row.LeafSampleWeights, tree.
GetLeafSampleWeightsAt
(nodeId).ToArray());