From 35df2228096da723f30fb05c0f7c86c06bfd0d72 Mon Sep 17 00:00:00 2001 From: Dominik Mueller Date: Fri, 29 Apr 2016 09:26:45 +0200 Subject: [PATCH] Remove debug lines from example agent --- examples/agents/random_agent.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/examples/agents/random_agent.py b/examples/agents/random_agent.py index f361d853e..3e6cfac08 100644 --- a/examples/agents/random_agent.py +++ b/examples/agents/random_agent.py @@ -18,10 +18,6 @@ if __name__ == '__main__': logger = logging.getLogger() logger.setLevel(logging.INFO) - outdir = '/tmp/random-agent-results' - gym.upload(outdir, algorithm_id='random') - raise"hi" - env = gym.make('CartPole-v0') agent = RandomAgent(env.action_space)