You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When we are runing BTBSession and there is a list of Tunables to try, once the max error is reached and self._normalized_scores becomes None, the BTBSession fails to select the proper Tunable.
This happens because we are doing a selection over the self._tuners list which is not updated after a Tunable is removed because of reaching max errors. In this case we have to use self._tunables in order to select from which one to continue tuning with. And if there is a case that this list is empty, then raise a StopTuning exception.
The text was updated successfully, but these errors were encountered:
Description
When we are runing
BTBSession
and there is a list ofTunables
to try, once the max error is reached andself._normalized_scores
becomesNone
, theBTBSession
fails to select the properTunable
.This happens because we are doing a selection over the
self._tuners
list which is not updated after aTunable
is removed because of reaching max errors. In this case we have to useself._tunables
in order to select from which one to continue tuning with. And if there is a case that this list is empty, then raise aStopTuning
exception.The text was updated successfully, but these errors were encountered: