1 write to _scoreColIndex
Microsoft.ML.Data (1)
Prediction\CalibratorCatalog.cs (1)
256
_scoreColIndex
= inputSchema.GetColumnOrNull(_scoreColumnName)?.Index ?? -1;
6 references to _scoreColIndex
Microsoft.ML.Data (6)
Prediction\CalibratorCatalog.cs (6)
258
parent.Host.Check(
_scoreColIndex
>= 0, "The data to calibrate contains no \'" + scoreColumnName + "\' column.");
262
=> col => col ==
_scoreColIndex
;
268
var scoreName = InputSchema[
_scoreColIndex
].Name;
283
var annotation = InputSchema[
_scoreColIndex
].Annotations;
318
Host.Assert(input.IsColumnActive(input.Schema[
_scoreColIndex
]));
319
var getScore = input.GetGetter<float>(input.Schema[
_scoreColIndex
]);