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