From 2340ddfcdecca30042f4e3df9108322b18fc4e52 Mon Sep 17 00:00:00 2001 From: Pranjal Tandon Date: Wed, 22 May 2019 11:42:27 +0530 Subject: [PATCH] Update main.py --- main.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/main.py b/main.py index b7a9c19..7f3f01a 100644 --- a/main.py +++ b/main.py @@ -47,9 +47,7 @@ parser.add_argument('--cuda', action="store_true", args = parser.parse_args() # Environment -# 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)) +env = gym.make(args.env_name) torch.manual_seed(args.seed) np.random.seed(args.seed) env.seed(args.seed)