1 instantiation of Segment
Microsoft.ML.Core (1)
Utilities\BinFinder.cs (1)
386return new Segment(min, split, max, energy);
4 references to Segment
Microsoft.ML.Core (4)
Utilities\BinFinder.cs (4)
317private readonly Heap<Segment> _segmentHeap; // heap used for dropping initial peg placement 325_segmentHeap = new Heap<Segment>((a, b) => a.Energy < b.Energy); 356Segment seg = GetSegmentSplit(0, CountValues); 381private Segment GetSegmentSplit(int min, int max)