4 writes to _probIndex
Microsoft.ML.Data (4)
Evaluators\BinaryClassifierEvaluator.cs (4)
1069
_probIndex
= -1;
1070
if (string.IsNullOrEmpty(_probCol) || !schema.TryGetColumnIndex(_probCol, out
_probIndex
))
1090
_probIndex
= -1;
1091
if (_probCol != null && !schema.TryGetColumnIndex(_probCol, out
_probIndex
))
13 references to _probIndex
Microsoft.ML.Data (13)
Evaluators\BinaryClassifierEvaluator.cs (13)
1137
if (
_probIndex
>= 0)
1141
activeOutput(LogLossCol) && (col ==
_probIndex
|| col == LabelIndex) ||
1142
activeOutput(AssignedCol) && (_useRaw && col == ScoreIndex || !_useRaw && col ==
_probIndex
);
1152
Host.Assert(
_probIndex
>= 0 || _useRaw);
1162
var labelGetter =
_probIndex
>= 0 && activeCols(LogLossCol) ?
1165
if (
_probIndex
>= 0 && activeCols(LogLossCol))
1166
probGetter = input.GetGetter<Single>(input.Schema[
_probIndex
]);
1207
var getters =
_probIndex
>= 0 ? new Delegate[2] : new Delegate[1];
1216
getters[
_probIndex
>= 0 ? AssignedCol : 0] = predFn;
1218
if (
_probIndex
>= 0 && activeCols(LogLossCol))
1248
if (
_probIndex
>= 0)
1272
if (
_probIndex
>= 0)
1275
t = schema[
_probIndex
].Type;