1 instantiation of TopExamplesInfo
Microsoft.ML.Data (1)
Evaluators\AnomalyDetectionEvaluator.cs (1)
565
_topExamples.Add(new
TopExamplesInfo
() { Score = score, Label = label, Name = name.ToString() });
3 references to TopExamplesInfo
Microsoft.ML.Data (3)
Evaluators\AnomalyDetectionEvaluator.cs (3)
423
private readonly Heap<
TopExamplesInfo
> _topExamples;
457
_topExamples = new Heap<
TopExamplesInfo
>((exampleA, exampleB) => exampleA.Score > exampleB.Score, topK);
560
var
min = _topExamples.Top;