1 write to BestScore
Microsoft.ML.FastTree (1)
Training\EarlyStoppingCriteria.cs (1)
110BestScore = score;
7 references to BestScore
Microsoft.ML.FastTree (7)
Training\EarlyStoppingCriteria.cs (7)
108bool isBestEver = ((score > BestScore) != LowerIsBetter); 167return (validationScore - BestScore > Threshold); 169return (BestScore - validationScore > Threshold); 337return (validationScore > (1 + Threshold) * BestScore); 339return (validationScore < (1 - Threshold) * BestScore); 452return (validationScore * recentBest >= (1 + Threshold) * BestScore * recentAverage); 454return (validationScore * recentBest <= (1 - Threshold) * BestScore * recentAverage);