2 writes to _threshold
Microsoft.ML.Data (2)
Evaluators\BinaryClassifierEvaluator.cs (2)
1063
_threshold
= threshold;
1096
_threshold
= ctx.Reader.ReadFloat();
4 references to _threshold
Microsoft.ML.Data (4)
Evaluators\BinaryClassifierEvaluator.cs (4)
1099
Host.CheckDecode(FloatUtils.IsFinite(
_threshold
));
1129
Contracts.Assert(FloatUtils.IsFinite(
_threshold
));
1130
ctx.Writer.Write(
_threshold
);
1243
return Single.IsNaN(val) ? false : val >
_threshold
;