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)
423private readonly Heap<TopExamplesInfo> _topExamples; 457_topExamples = new Heap<TopExamplesInfo>((exampleA, exampleB) => exampleA.Score > exampleB.Score, topK);