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)
1070if (string.IsNullOrEmpty(_probCol) || !schema.TryGetColumnIndex(_probCol, out _probIndex)) 1091if (_probCol != null && !schema.TryGetColumnIndex(_probCol, out _probIndex)) 1092throw Host.ExceptParam(nameof(schema), "Did not find the probability column '{0}'", _probCol); 1098Host.CheckDecode(!string.IsNullOrEmpty(_probCol) || _useRaw); 1128ctx.SaveStringOrNull(_probCol); 1131Contracts.Assert(!string.IsNullOrEmpty(_probCol) || _useRaw); 1261Host.AssertValueOrNull(_probCol); 1274Host.Assert(!string.IsNullOrEmpty(_probCol)); 1277throw Host.ExceptSchemaMismatch(nameof(schema), "probability", _probCol, "Single", t.ToString());