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