ConfigSpace
ConfigSpace copied to clipboard
Domain specific language for configuration spaces in Python/Cython. Useful for hyperparameter optimization and algorithm configuration.
I was wondering why an `OrdinalHyperparameter` can't have weights for the values in `sequence`. I saw the hint in the [docs about hyperparameters](https://automl.github.io/ConfigSpace/main/api/hyperparameters.html#hyperparameters), but don't understand yet why. Is this...
YAHPOBench has the task id in it's configuration as a hyperparamter which is not something you would like any optimizer to know about. Should be an easy way to remove...
Would be useful in the case of wanting to copy and then modify but retain the original.
This PR attempts to first convert everything to Python, so a type checker can be run across everything as well as use linters properly. This also includes updating everything to...
I am not very familiar with the project, but I came upon this and it looks to me like an oversight (given the refactor of search space to behave more...
Found a bug where `InactiveHyperparameterSetError` refers to the wrong hyperparameter when using `config.is_valid_configuration()`. Reproduce (ConfigSpace 0.7.1): ```python from math import nan from ConfigSpace import ConfigurationSpace, CategoricalHyperparameter, UniformFloatHyperparameter, \ EqualsCondition, Configuration,...