1 write to ScoreColumnIndex
Microsoft.ML.Data (1)
Scorers\PredictedLabelScorerBase.cs (1)
54ScoreColumnIndex = 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)
105string scoreCol = RowMapper.OutputSchema[ScoreColumnIndex].Name; 162ctx.SaveNonEmptyString(RowMapper.OutputSchema[ScoreColumnIndex].Name); 261return col => pred(col) || col == ScoreColumnIndex && active[MapIinfoToCol(0)]; 413Host.Assert(output.IsColumnActive(output.Schema[Bindings.ScoreColumnIndex])); 421if (iinfo == delta + Bindings.ScoreColumnIndex && delScore != null)