2 writes to _probCol
Microsoft.ML.Data (2)
Evaluators\BinaryClassifierEvaluator.cs (2)
1068
_probCol
= probCol;
1089
_probCol
= ctx.LoadStringOrNull();
11 references to _probCol
Microsoft.ML.Data (11)
Evaluators\BinaryClassifierEvaluator.cs (11)
1070
if (string.IsNullOrEmpty(
_probCol
) || !schema.TryGetColumnIndex(
_probCol
, out _probIndex))
1091
if (
_probCol
!= null && !schema.TryGetColumnIndex(
_probCol
, out _probIndex))
1092
throw Host.ExceptParam(nameof(schema), "Did not find the probability column '{0}'",
_probCol
);
1098
Host.CheckDecode(!string.IsNullOrEmpty(
_probCol
) || _useRaw);
1128
ctx.SaveStringOrNull(
_probCol
);
1131
Contracts.Assert(!string.IsNullOrEmpty(
_probCol
) || _useRaw);
1261
Host.AssertValueOrNull(
_probCol
);
1274
Host.Assert(!string.IsNullOrEmpty(
_probCol
));
1277
throw Host.ExceptSchemaMismatch(nameof(schema), "probability",
_probCol
, "Single", t.ToString());