2 writes to _objBest1
Microsoft.ML.AutoML (2)
Tuner\SearchThread.cs (2)
32
_objBest1
= searchAlgorithm.BestObj == null ? double.PositiveInfinity : (double)searchAlgorithm.BestObj;
50
_objBest1
= metric;
6 references to _objBest1
Microsoft.ML.AutoML (6)
Tuner\SearchThread.cs (6)
33
_objBest2 =
_objBest1
;
45
if (metric <
_objBest1
)
49
_objBest2 = double.IsInfinity(
_objBest1
) ? metric :
_objBest1
;
54
if (_objBest2 >
_objBest1
)
56
_speed = (_objBest2 -
_objBest1
) / (_costTotal - _costBest2 + _eps);