1 write to Threshold
Microsoft.ML.FastTree (1)
Training\EarlyStoppingCriteria.cs (1)
342
internal override IEarlyStoppingCriterionFactory BuildFactory() => new Options() {
Threshold
= Threshold };
4 references to Threshold
Microsoft.ML.FastTree (4)
Training\EarlyStoppingCriteria.cs (4)
323
Contracts.CheckUserArg(0 <= options.
Threshold
&& options.
Threshold
<= 1, nameof(options.
Threshold
), "Must be in range [0,1].");
324
Threshold = options.
Threshold
;