2 writes to _prob
Microsoft.ML.StandardTrainers (2)
Standard\Simple\SimpleTrainers.cs (2)
363
_prob
= prob;
375
_prob
= ctx.Reader.ReadFloat();
7 references to _prob
Microsoft.ML.StandardTrainers (7)
Standard\Simple\SimpleTrainers.cs (7)
364
_raw = 2 *
_prob
- 1; // This could be other functions -- logodds for instance
376
Host.CheckDecode(!float.IsNaN(
_prob
));
378
_raw = 2 *
_prob
- 1;
399
Contracts.Assert(!float.IsNaN(
_prob
));
400
ctx.Writer.Write(
_prob
);
413
var prob = ctx.AddInitializer(
_prob
, "probability");
472
prob =
_prob
;