1 write to _count
Microsoft.ML.FastTree (1)
Training\EarlyStoppingCriteria.cs (1)
521
_count
= ((validationScore < _prevScore) != LowerIsBetter) ? _count + 1 : 0;
2 references to _count
Microsoft.ML.FastTree (2)
Training\EarlyStoppingCriteria.cs (2)
521
_count = ((validationScore < _prevScore) != LowerIsBetter) ?
_count
+ 1 : 0;
524
return (
_count
>= WindowSize);