1 write to ScoreColumnIndex
Microsoft.ML.Data (1)
Scorers\PredictedLabelScorerBase.cs (1)
59ScoreColumnIndex = scoreColIndex;
12 references to ScoreColumnIndex
Microsoft.ML.Data (12)
Scorers\BinaryClassifierScorer.cs (3)
199string scoreColumn = Bindings.RowMapper.OutputSchema[Bindings.ScoreColumnIndex].Name; 236Host.Assert(output.IsColumnActive(output.Schema[Bindings.ScoreColumnIndex])); 238var scoreColumn = output.Schema[Bindings.ScoreColumnIndex];
Scorers\ClusteringScorer.cs (2)
97Contracts.Assert(output.IsColumnActive(output.Schema[Bindings.ScoreColumnIndex])); 99ValueGetter<VBuffer<float>> mapperScoreGetter = output.GetGetter<VBuffer<float>>(output.Schema[Bindings.ScoreColumnIndex]);
Scorers\MulticlassClassificationScorer.cs (2)
566Host.Assert(output.IsColumnActive(output.Schema[Bindings.ScoreColumnIndex])); 568ValueGetter<VBuffer<float>> mapperScoreGetter = output.GetGetter<VBuffer<float>>(Bindings.RowMapper.OutputSchema[Bindings.ScoreColumnIndex]);
Scorers\PredictedLabelScorerBase.cs (5)
111string scoreCol = RowMapper.OutputSchema[ScoreColumnIndex].Name; 168ctx.SaveNonEmptyString(RowMapper.OutputSchema[ScoreColumnIndex].Name); 267return col => pred(col) || col == ScoreColumnIndex && active[MapIinfoToCol(0)]; 419Host.Assert(output.IsColumnActive(output.Schema[Bindings.ScoreColumnIndex])); 427if (iinfo == delta + Bindings.ScoreColumnIndex && delScore != null)