2 overrides of BinUpperBounds
Microsoft.ML.FastTree (2)
Dataset\FeatureFlock.cs (1)
1186
public sealed override double[]
BinUpperBounds
(int featureIndex)
Dataset\SingletonFeatureFlock.cs (1)
72
public 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)
551
double[] binUpperBound = TrainSet.Flocks[flockIndex].
BinUpperBounds
(subFeatureIndex);
TreeEnsemble\InternalRegressionTree.cs (3)
1097
RawThresholds[n] = (float)dataset.Flocks[flock].
BinUpperBounds
(subfeature)[Thresholds[n]];
1115
uint numBins = (uint)dataset.Flocks[flock].
BinUpperBounds
(subfeature).Length;
1118
double rawThreshold = dataset.Flocks[flock].
BinUpperBounds
(subfeature)[i];