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 runing a BTBSession with a Tunable({}) this will fail to record the score obtained with the "default" configuration of {}.
This case is an unusual one as the object Tunable without hyperparameters to tune shouldn't exist, however, during research on tuning hyperparameters of pipelines, we have faced this problem when there was no tunable hyperparameters on the pipeline.
Solution propose
We noticed that the cardinality is 1. In this case, the Tuner for that Tunable shouldn't be instantiated, tuner = None and then when attempts to record simply check that the selected tuner is not None.
The text was updated successfully, but these errors were encountered:
Description
When runing a
BTBSession
with aTunable({})
this will fail torecord
the score obtained with the "default" configuration of{}
.This case is an unusual one as the object
Tunable
without hyperparameters to tune shouldn't exist, however, during research on tuning hyperparameters of pipelines, we have faced this problem when there was no tunable hyperparameters on the pipeline.Solution propose
We noticed that the
cardinality
is 1. In this case, theTuner
for thatTunable
shouldn't be instantiated,tuner = None
and then when attempts torecord
simply check that the selectedtuner
is notNone
.The text was updated successfully, but these errors were encountered: