10 references to MedianAggregatorUtils
Microsoft.ML.Data (10)
Transforms\NormalizeColumnDbl.cs (5)
613private MedianAggregatorUtils.MaxHeap<double> _belowMedianHeap; 614private MedianAggregatorUtils.MinHeap<double> _aboveMedianHeap; 620_belowMedianHeap = new MedianAggregatorUtils.MaxHeap<double>(contatinerStartingSize); 621_aboveMedianHeap = new MedianAggregatorUtils.MinHeap<double>(contatinerStartingSize); 632MedianAggregatorUtils.GetMedianSoFar(value, ref _median, ref _belowMedianHeap, ref _aboveMedianHeap);
Transforms\NormalizeColumnSng.cs (5)
771private MedianAggregatorUtils.MaxHeap<float> _belowMedianHeap; 772private MedianAggregatorUtils.MinHeap<float> _aboveMedianHeap; 778_belowMedianHeap = new MedianAggregatorUtils.MaxHeap<TFloat>(contatinerStartingSize); 779_aboveMedianHeap = new MedianAggregatorUtils.MinHeap<TFloat>(contatinerStartingSize); 790MedianAggregatorUtils.GetMedianSoFar(value, ref _median, ref _belowMedianHeap, ref _aboveMedianHeap);