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