2 overrides of BinUpperBounds
Microsoft.ML.FastTree (2)
Dataset\FeatureFlock.cs (1)
1186public sealed override double[] BinUpperBounds(int featureIndex)
Dataset\SingletonFeatureFlock.cs (1)
72public override double[] BinUpperBounds(int featureIndex)
5 references to BinUpperBounds
Microsoft.ML.FastTree (5)
Dataset\FeatureFlock.cs (1)
1031/// This will be the length of <see cref="BinUpperBounds"/> for this feature. This is also
GamTrainer.cs (1)
551double[] binUpperBound = TrainSet.Flocks[flockIndex].BinUpperBounds(subFeatureIndex);
TreeEnsemble\InternalRegressionTree.cs (3)
1097RawThresholds[n] = (float)dataset.Flocks[flock].BinUpperBounds(subfeature)[Thresholds[n]]; 1115uint numBins = (uint)dataset.Flocks[flock].BinUpperBounds(subfeature).Length; 1118double rawThreshold = dataset.Flocks[flock].BinUpperBounds(subfeature)[i];