|
@@ -17,13 +17,6 @@ try:
|
|
|
except:
|
|
|
pass
|
|
|
|
|
|
-class ScaleActions(gym.ActionWrapper):
|
|
|
- def __init__(self, env=None):
|
|
|
- super(ScaleActions, self).__init__(env)
|
|
|
-
|
|
|
- def _step(self, action):
|
|
|
- action = (numpy.tanh(action) + 1) / 2 * (self.action_space.high - self.action_space.low) + self.action_space.low
|
|
|
- return self.env.step(action)
|
|
|
|
|
|
def make_env(env_id, seed, rank, log_dir):
|
|
|
def _thunk():
|
|
@@ -41,8 +34,6 @@ def make_env(env_id, seed, rank, log_dir):
|
|
|
if len(obs_shape) == 3 and obs_shape[2] == 3:
|
|
|
env = WrapPyTorch(env)
|
|
|
|
|
|
- #env = ScaleActions(env)
|
|
|
-
|
|
|
return env
|
|
|
|
|
|
return _thunk
|