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)
433
Host.Check(_scores.Length ==
_scoresArr
.Length);
440
_scores.CopyTo(
_scoresArr
);
453
foreach (var index in Enumerable.Range(0,
_scoresArr
.Length).OrderBy(i =>
_scoresArr
[i]))
456
UnweightedCounters.UpdateFirstPass(intLabel,
_scoresArr
, 1, _indicesArr);
458
WeightedCounters.UpdateFirstPass(intLabel,
_scoresArr
, weight, _indicesArr);
473
Host.Check(_scores.Length ==
_scoresArr
.Length);
477
_scores.CopyTo(
_scoresArr
);
479
foreach (var index in Enumerable.Range(0,
_scoresArr
.Length).OrderBy(i =>
_scoresArr
[i]))
500
Host.Assert(score.Type.GetVectorSize() ==
_scoresArr
.Length);