ConfigSpace
ConfigSpace copied to clipboard
Allowing condition such as 'a<b'?
There is a widespread situation in hyperparameter tuning/knob tuning problem. A hyperparameter $a$ must be less than another parameter $b$. Or more complex, $a\lt b\lt c$.
Is it possible to support such condition in 'ConfigSpace'?
I'm afraid no, and we only have this for forbidden clauses. Such a contribution would be very welcome, though.
I implement a ConditionedConfigurationSpace
to support such complex conditions. Please refer to #277 for more details.