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