C. Benjamins

Results 65 comments of C. Benjamins

Hello BugsBuggy, indeed, you can restore SMAC as in the Branin example. The stats can be loaded and the trajectory can be copied to the new output directory (uncomment line...

Yes this is possible. You could do it like so (**without guarantees for any side effects**). Does this help you? You can also add origin information to a configuration during...

The first `smac.optimize()` call was used to get dummy data. In your case you don't have to do it as you already have that data in your DataFrame. Therefore you...

SMAC cannot natively handle the case of having one configuration space for the initial design and then another one for the search. What you could do is to transform the...

Maybe converting your invalid choices into constant HPs could be a solution. Could you elaborate on the transfer question, maybe add an example? What do you mean by 'test for...

If SMAC prohibits to modify existing configuration spaces, could you create a new one, not changing the existing? Maybe you need to change `smac.solver.scenario.cs` or `smac.solver.config_space`, and maybe reinitialize `smac.solver.epm_chooser`....

Hi vmanriq, this is an issue regarding ConfigSpace. You can create conditions like in this [example](https://automl.github.io/SMAC3/master/pages/examples/python/svm_cv.html) and have a look at the [documentation](https://automl.github.io/ConfigSpace/master/API-Doc.html#conditions). In addition, you can have a look...

Hi, we support the following hyperparameter types now: ``` UniformFloatHyperparameter, UniformIntegerHyperparameter, OrdinalHyperparameter, CategoricalHyperparameter, NormalFloatHyperparameter, NormalIntegerHyperparameter, BetaFloatHyperparameter, BetaIntegerHyperparameter, ``` .However, `NormalFloatHyperparameter, NormalIntegerHyperparameter, BetaFloatHyperparameter, BetaIntegerHyperparameter` cannot be inactive, i.e. they cannot be...

We don't support pSMAC in SMAC3-2.0 anymore, however we now support parallelism natively! For the case of having a large configuration space with cheap evaluation functions, you can set [the...

Update regarding the initial question: It is easily possible to add previously evaluated configs via the [tell interface](https://automl.github.io/SMAC3/v2.0.0/examples/1_basics/3_ask_and_tell.html#ask-and-tell). However, we still do not support changing configuration spaces and assume the...