1 write to Threshold
Microsoft.ML.FastTree (1)
Training\EarlyStoppingCriteria.cs (1)
172internal override IEarlyStoppingCriterionFactory BuildFactory() => new Options() { Threshold = Threshold };
3 references to Threshold
Microsoft.ML.FastTree (3)
Training\EarlyStoppingCriteria.cs (3)
153Contracts.CheckUserArg(options.Threshold >= 0, nameof(options.Threshold), "Must be non-negative."); 154Threshold = options.Threshold;