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