4 references to PerBinStats
Microsoft.ML.FastTree (4)
Dataset\FeatureFlock.cs (2)
1288
return new
PerBinStats
(Hist.SumTargetsByBin[featureIndex], Hist.SumWeightsByBin[featureIndex], Hist.CountByBin[featureIndex]);
1290
return new
PerBinStats
(Hist.SumTargetsByBin[featureIndex], 0, Hist.CountByBin[featureIndex]);
Dataset\SingletonFeatureFlock.cs (2)
155
return new
PerBinStats
(_hist.SumTargetsByBin[featureIndex], _hist.SumWeightsByBin[featureIndex], _hist.CountByBin[featureIndex]);
157
return new
PerBinStats
(_hist.SumTargetsByBin[featureIndex], 0, _hist.CountByBin[featureIndex]);