automl / DACBench

A benchmark library for Dynamic Algorithm Configuration.
https://automl.github.io/DACBench/
Apache License 2.0
28 stars 14 forks source link

Action-space adjusted to instance sets in Sigmoid #110

Closed traeuker closed 11 months ago

traeuker commented 2 years ago

When I choose a different instance set in Sigmoid, specifically cSigmoig, the action space is not readjusted according to its dimensions.

env_config = {
   "instance_set_path": "../instance_sets/sigmoid/sigmoid_5D3M_train.csv",
   "env_type": 'continuous',
   "action_space": 'Box',
}
bench = SigmoidBenchmark()
for k in env_config.keys():
   bench.config[k] = env_config[k]
env = bench.get_environment()

I don't know if this is the correct method of choosing cSigmoid or if there is a better way.