2 writes to Threshold
Microsoft.ML.FastTree (2)
Training\EarlyStoppingCriteria.cs (2)
146
Threshold
= threshold;
154
Threshold
= options.Threshold;
3 references to Threshold
Microsoft.ML.FastTree (3)
Training\EarlyStoppingCriteria.cs (3)
167
return (validationScore - BestScore >
Threshold
);
169
return (BestScore - validationScore >
Threshold
);
172
internal override IEarlyStoppingCriterionFactory BuildFactory() => new Options() { Threshold =
Threshold
};