2 writes to Score
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 });
7 references to Score
Microsoft.ML.Data (7)
Evaluators\AucAggregator.cs (7)
236using (var posSorted = PosSample.OrderByDescending(x => x.Score).GetEnumerator()) 237using (var negSorted = NegSample.OrderByDescending(x => x.Score).GetEnumerator()) 252posScore = posSorted.Current.Score; 253var negScore = negSorted.Current.Score; 285posScore = posSorted.Current.Score; 295negScore = negSorted.Current.Score; 319if (posScore == negSorted.Current.Score)