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