9 instantiations of MinHeap
Microsoft.ML.Data (2)
Transforms\NormalizeColumnDbl.cs (1)
621
_aboveMedianHeap = new MedianAggregatorUtils.
MinHeap
<double>(contatinerStartingSize);
Transforms\NormalizeColumnSng.cs (1)
779
_aboveMedianHeap = new MedianAggregatorUtils.
MinHeap
<TFloat>(contatinerStartingSize);
Microsoft.ML.Tests (7)
Transformers\NormalizerTests.cs (7)
1097
var minHeap = new MedianAggregatorUtils.
MinHeap
<float>((numberOfItems / 2) + 1);
1127
MedianAggregatorUtils.MinHeap<float> heap = new MedianAggregatorUtils.
MinHeap
<float>(10);
1138
heap = new MedianAggregatorUtils.
MinHeap
<float>(10);
1149
heap = new MedianAggregatorUtils.
MinHeap
<float>(10);
1160
heap = new MedianAggregatorUtils.
MinHeap
<float>(10);
1170
heap = new MedianAggregatorUtils.
MinHeap
<float>(10);
1181
heap = new MedianAggregatorUtils.
MinHeap
<float>(10000);
6 references to MinHeap
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)
614
private MedianAggregatorUtils.
MinHeap
<double> _aboveMedianHeap;
Transforms\NormalizeColumnSng.cs (2)
700
internal static void GetMedianSoFar(in float num, ref float median, ref MaxHeap<float> belowMedianHeap, ref
MinHeap
<float> aboveMedianHeap)
772
private MedianAggregatorUtils.
MinHeap
<float> _aboveMedianHeap;
Microsoft.ML.Tests (2)
Transformers\NormalizerTests.cs (2)
1097
var
minHeap = new MedianAggregatorUtils.MinHeap<float>((numberOfItems / 2) + 1);
1127
MedianAggregatorUtils.
MinHeap
<float> heap = new MedianAggregatorUtils.MinHeap<float>(10);