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; 524return (_count >= WindowSize);