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