1 write to AllBinUpperBounds
Microsoft.ML.FastTree (1)
Dataset\FeatureFlock.cs (1)
1179AllBinUpperBounds = binUpperBounds;
6 references to AllBinUpperBounds
Microsoft.ML.FastTree (6)
Dataset\FeatureFlock.cs (5)
1181Contracts.Assert(AllBinUpperBounds.All(x => Utils.Size(x) >= 1)); 1183Contracts.Assert(AllBinUpperBounds.Select((b, f) => HotFeatureStarts[f + 1] - HotFeatureStarts[f] + 1 == b.Length).All(i => i)); 1189return AllBinUpperBounds[featureIndex]; 1201return AllBinUpperBounds[featureIndex].Length; 1207+ sizeof(double) * (AllBinUpperBounds.Length - 1 + HotFeatureStarts[HotFeatureStarts.Length - 1])
Dataset\OneHotFeatureFlock.cs (1)
25.Select(bins => new OneHotFeatureFlock(bins, HotFeatureStarts, AllBinUpperBounds, false))