1 write to _scoresArr
Microsoft.ML.Data (1)
Evaluators\ClusteringEvaluator.cs (1)
403_scoresArr = new float[scoreVectorSize];
11 references to _scoresArr
Microsoft.ML.Data (11)
Evaluators\ClusteringEvaluator.cs (11)
433Host.Check(_scores.Length == _scoresArr.Length); 440_scores.CopyTo(_scoresArr); 453foreach (var index in Enumerable.Range(0, _scoresArr.Length).OrderBy(i => _scoresArr[i])) 456UnweightedCounters.UpdateFirstPass(intLabel, _scoresArr, 1, _indicesArr); 458WeightedCounters.UpdateFirstPass(intLabel, _scoresArr, weight, _indicesArr); 473Host.Check(_scores.Length == _scoresArr.Length); 477_scores.CopyTo(_scoresArr); 479foreach (var index in Enumerable.Range(0, _scoresArr.Length).OrderBy(i => _scoresArr[i])) 500Host.Assert(score.Type.GetVectorSize() == _scoresArr.Length);