2 writes to Threshold
Microsoft.ML.FastTree (2)
Training\EarlyStoppingCriteria.cs (2)
316
Threshold
= threshold;
324
Threshold
= options.Threshold;
3 references to Threshold
Microsoft.ML.FastTree (3)
Training\EarlyStoppingCriteria.cs (3)
337
return (validationScore > (1 +
Threshold
) * BestScore);
339
return (validationScore < (1 -
Threshold
) * BestScore);
342
internal override IEarlyStoppingCriterionFactory BuildFactory() => new Options() { Threshold =
Threshold
};