Action-space adjusted to instance sets in Sigmoid
Closed this issue · 0 comments
traeuker commented
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.