1 write to _pendingSweepsNotSubmitted
Microsoft.ML.Sweeper (1)
Algorithms\NelderMead.cs (1)
122_pendingSweepsNotSubmitted = new Queue<KeyValuePair<ParameterSet, float[]>>();
4 references to _pendingSweepsNotSubmitted
Microsoft.ML.Sweeper (4)
Algorithms\NelderMead.cs (4)
282Contracts.Assert(_pendingSweeps.Count + _pendingSweepsNotSubmitted.Count == _dim); 412_pendingSweepsNotSubmitted.Enqueue(new KeyValuePair<ParameterSet, float[]>(FloatArrayAsParameterSet(newPoint), newPoint)); 419int numPoints = Math.Min(maxSweeps, _pendingSweepsNotSubmitted.Count); 424var point = _pendingSweepsNotSubmitted.Dequeue();