Closed shukon closed 4 years ago
Most of it is just swapping the logic (asking isinstance(parameter, NumericalHyperparameter) instead of isinstance(parameter, CategoricalHyperparameter) and making the code more maintainable.
isinstance(parameter, NumericalHyperparameter)
isinstance(parameter, CategoricalHyperparameter)
Good enough to release?
I think so yes.
Most of it is just swapping the logic (asking
isinstance(parameter, NumericalHyperparameter)
instead ofisinstance(parameter, CategoricalHyperparameter)
and making the code more maintainable.