1 write to _toleratedQueue
Microsoft.ML.FastTree (1)
Training\Test.cs (1)
295_toleratedQueue = new LinkedList<ValueIterationPair>();
8 references to _toleratedQueue
Microsoft.ML.FastTree (8)
Training\Test.cs (8)
285public double BestAverageValue => _toleratedQueue.Count == 0 ? 0.0 : _toleratedQueue.First().Sum / _windowSize; 322(_toleratedQueue.Count == 0 || _currentWindowSum > _toleratedQueue.Last().Sum)) 324_toleratedQueue.AddLast(new ValueIterationPair(Iteration - _windowSize / 2, _currentWindowSum)); 327while (_toleratedQueue.First().Sum < _currentWindowSum * toleranceFactor) 329_toleratedQueue.RemoveFirst(); 332BestIteration = _toleratedQueue.First().Iteration;