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