16 references to Top
Microsoft.ML.Core (2)
Utilities\OrderedWaiter.cs (1)
110
while (_waiters.Count > 0 && _waiters.
Top
.Line <= _currCleared)
Utilities\SupervisedBinFinder.cs (1)
317
while (intervals.Count < _maxBins && intervals.
Top
.Gain > 0)
Microsoft.ML.Data (8)
Deprecated\Vector\VectorUtils.cs (2)
90
if (bottomHeap.Count == bottom && value > bottomHeap.
Top
.Value)
103
if (topHeap.Count == top && value < topHeap.
Top
.Value)
Evaluators\AnomalyDetectionEvaluator.cs (6)
345
if (example.Score < heap.
Top
.Score)
386
if (score < _examples.
Top
.Score)
495
Names[_topExamples.Count - 1] = _topExamples.
Top
.Name.AsMemory();
496
Scores[_topExamples.Count - 1] = _topExamples.
Top
.Score;
497
Labels[_topExamples.Count - 1] = _topExamples.
Top
.Label;
560
var min = _topExamples.
Top
;
Microsoft.ML.KMeansClustering (2)
KMeansPlusPlusTrainer.cs (2)
1638
if (heap.Count == numSamples && key <= heap.
Top
.Weight)
1664
else if (row.Weight > finalHeap.
Top
.Weight)
Microsoft.ML.Transforms (4)
LearnerFeatureSelection.cs (2)
243
else if (heap.
Top
< score)
251
var threshold = heap.
Top
;
MutualInformationFeatureSelection.cs (2)
298
else if (heap.
Top
< score)
307
var threshold = heap.Count < topk ? 0 : heap.
Top
;