2 instantiations of MaxHeap
Microsoft.ML.Data (2)
Transforms\NormalizeColumnDbl.cs (1)
620
_belowMedianHeap = new MedianAggregatorUtils.
MaxHeap
<double>(contatinerStartingSize);
Transforms\NormalizeColumnSng.cs (1)
778
_belowMedianHeap = new MedianAggregatorUtils.
MaxHeap
<TFloat>(contatinerStartingSize);
4 references to MaxHeap
Microsoft.ML.Data (4)
Transforms\NormalizeColumnDbl.cs (2)
540
internal static void GetMedianSoFar(in double num, ref double median, ref
MaxHeap
<double> belowMedianHeap, ref MinHeap<double> aboveMedianHeap)
613
private MedianAggregatorUtils.
MaxHeap
<double> _belowMedianHeap;
Transforms\NormalizeColumnSng.cs (2)
700
internal static void GetMedianSoFar(in float num, ref float median, ref
MaxHeap
<float> belowMedianHeap, ref MinHeap<float> aboveMedianHeap)
771
private MedianAggregatorUtils.
MaxHeap
<float> _belowMedianHeap;