2 instantiations of AucInfo
Microsoft.ML.Data (2)
Evaluators\AucAggregator.cs (2)
335
return (ref AucInfo dst) => dst = new
AucInfo
() { Score = Score, Weight = _weight };
347
examples.Add(new
AucInfo
() { Score = Score, Weight = _weight });
4 references to AucInfo
Microsoft.ML.Data (4)
Evaluators\AucAggregator.cs (4)
216
internal sealed class WeightedAucAggregator : AucAggregatorBase<WeightedAucAggregator.
AucInfo
>
333
protected override ValueGetter<
AucInfo
> GetSampleGetter()
335
return (ref
AucInfo
dst) => dst = new AucInfo() { Score = Score, Weight = _weight };
344
protected override void AddExample(List<
AucInfo
> examples)