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
Constants cannot be defined as a Boolean, categoricals can:
from ConfigSpace.hyperparameters import CategoricalHyperparameter, Constant
# works
a = CategoricalHyperparameter("a", choices(True, False))
# does not work
b = Constant("b", value=True)