1 write to _roList
Microsoft.ML.StandardTrainers (1)
Optimizer\Optimizer.cs (1)
222_roList = new List<float>();
14 references to _roList
Microsoft.ML.StandardTrainers (14)
Optimizer\Optimizer.cs (14)
249int count = _roList.Count; 259if (_roList[i] > 0) 261alphas[i] = -VectorUtils.DotProduct(in _sList[i], in _dir) / _roList[i]; 273VectorUtils.ScaleBy(ref _dir, _roList[lastGoodRo] / yDotY); 277if (_roList[i] > 0) 279float beta = VectorUtils.DotProduct(in _yList[i], in _dir) / _roList[i]; 288_roList.Clear(); 328if (_roList.Count < _m) 334_m = _roList.Count; 341if (_roList.Count == _m) 349_roList.RemoveAt(0); 363_sList[_roList.Count] = nextS; 364_yList[_roList.Count] = nextY; 365_roList.Add(ro);