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)
249
int count =
_roList
.Count;
259
if (
_roList
[i] > 0)
261
alphas[i] = -VectorUtils.DotProduct(in _sList[i], in _dir) /
_roList
[i];
273
VectorUtils.ScaleBy(ref _dir,
_roList
[lastGoodRo] / yDotY);
277
if (
_roList
[i] > 0)
279
float beta = VectorUtils.DotProduct(in _yList[i], in _dir) /
_roList
[i];
288
_roList
.Clear();
328
if (
_roList
.Count < _m)
334
_m =
_roList
.Count;
341
if (
_roList
.Count == _m)
349
_roList
.RemoveAt(0);
363
_sList[
_roList
.Count] = nextS;
364
_yList[
_roList
.Count] = nextY;
365
_roList
.Add(ro);