From 2cf792007fbd32d46bb7879761d51a6f91ed8895 Mon Sep 17 00:00:00 2001 From: Pranjal Tandon Date: Tue, 21 May 2019 12:39:16 +0530 Subject: [PATCH] Update main.py --- main.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/main.py b/main.py index 8067a6b..b7a9c19 100644 --- a/main.py +++ b/main.py @@ -47,9 +47,8 @@ parser.add_argument('--cuda', action="store_true", args = parser.parse_args() # Environment -# Removing Normalized Actions. -# Another way to use it = actions * env.action_space.high[0] -> (https://github.com/sfujim/TD3). This does the same thing. -# (or add env._max_episode_steps to normalized_actions.py) +# Normalized Actions. +# Another way to use it = actions * env.action_space.high[0] -> (https://github.com/sfujim/TD3). This does the same thing. or not? env = NormalizedActions(gym.make(args.env_name)) torch.manual_seed(args.seed) np.random.seed(args.seed)