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
I have an unexpected case when I am using SMAC2.1.0.
My tuned version of the solver is even worse than the default configured versions, even though I set the default configuration when running SMAC. We tried to get improved performance of geode and or-tools but failed. I also checked and tried the configuration during SMAC running; the default configuration hasn't been tried at all.
Are there any methods that I can ask SMAC to try the default configuration?
Steps/Code to Reproduce
SMAC2.1.0
Expected Results
SMAC can run the default configuration I have set in the configuration space at first. Then SMAC tried other configurations.
Actual Results
SMAC never tried the default configuration in the whole optimization period.
Versions
The text was updated successfully, but these errors were encountered:
Could you please add a minimal working example how you exactly have setup SMAC to use the default configuration?
In general, you can pass initial_design=DefaultInitialDesign() to the facade (from smac.initial_design import DefaultInitialDesign).
...
configurations= [your_default_configuration]
smac=HyperparameterOptimizationFacade(
scenario,
task.evaluate,
overwrite=True,
# Modify the initial design to use our custom initial designinitial_design=HyperparameterOptimizationFacade.get_initial_design(
scenario,
n_configs=0, # Do not use the default initial designadditional_configs=configurations# Use the configurations previously evaluated as initial design# This only passes the configurations but not the cost!
)
)
Description
I have an unexpected case when I am using SMAC2.1.0.
My tuned version of the solver is even worse than the default configured versions, even though I set the default configuration when running SMAC. We tried to get improved performance of
geode
andor-tools
but failed. I also checked and tried the configuration during SMAC running; the default configuration hasn't been tried at all.Are there any methods that I can ask SMAC to try the default configuration?
Steps/Code to Reproduce
SMAC2.1.0
Expected Results
SMAC can run the default configuration I have set in the configuration space at first. Then SMAC tried other configurations.
Actual Results
SMAC never tried the default configuration in the whole optimization period.
Versions
The text was updated successfully, but these errors were encountered: