From 7d25477942638f7369e59f6e09bc6a3572e94a3b Mon Sep 17 00:00:00 2001 From: Sina Afrooze Date: Sat, 24 Nov 2018 21:11:48 -0800 Subject: [PATCH] Add observation_space_type to GymEnvironmentParameters so that it is possible to explicitly state that in presets. (#145) --- rl_coach/environments/gym_environment.py | 1 + 1 file changed, 1 insertion(+) diff --git a/rl_coach/environments/gym_environment.py b/rl_coach/environments/gym_environment.py index a3407bf..9f990a9 100644 --- a/rl_coach/environments/gym_environment.py +++ b/rl_coach/environments/gym_environment.py @@ -65,6 +65,7 @@ class GymEnvironmentParameters(EnvironmentParameters): self.random_initialization_steps = 0 self.max_over_num_frames = 1 self.additional_simulator_parameters = {} + self.observation_space_type = None @property def path(self):