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