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)
258parent.Host.Check(_scoreColIndex >= 0, "The data to calibrate contains no \'" + scoreColumnName + "\' column."); 262=> col => col == _scoreColIndex; 268var scoreName = InputSchema[_scoreColIndex].Name; 283var annotation = InputSchema[_scoreColIndex].Annotations; 318Host.Assert(input.IsColumnActive(input.Schema[_scoreColIndex])); 319var getScore = input.GetGetter<float>(input.Schema[_scoreColIndex]);