9 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);
Microsoft.ML.Tests (7)
Transformers\NormalizerTests.cs (7)
1098
var maxHeap = new MedianAggregatorUtils.
MaxHeap
<float>((numberOfItems / 2) + 1);
1200
MedianAggregatorUtils.MaxHeap<float> heap = new MedianAggregatorUtils.
MaxHeap
<float>(10);
1211
heap = new MedianAggregatorUtils.
MaxHeap
<float>(10);
1222
heap = new MedianAggregatorUtils.
MaxHeap
<float>(10);
1233
heap = new MedianAggregatorUtils.
MaxHeap
<float>(10);
1244
heap = new MedianAggregatorUtils.
MaxHeap
<float>(10);
1255
heap = new MedianAggregatorUtils.
MaxHeap
<float>(10000);
6 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;
Microsoft.ML.Tests (2)
Transformers\NormalizerTests.cs (2)
1098
var
maxHeap = new MedianAggregatorUtils.MaxHeap<float>((numberOfItems / 2) + 1);
1200
MedianAggregatorUtils.
MaxHeap
<float> heap = new MedianAggregatorUtils.MaxHeap<float>(10);