From d616b9c50d84a2bbfd70097d3d11c07ce9d8aa05 Mon Sep 17 00:00:00 2001 From: Alex Nichol Date: Tue, 27 Mar 2018 11:09:34 -0700 Subject: [PATCH] fix docstring --- agents/rainbow_agent.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agents/rainbow_agent.py b/agents/rainbow_agent.py index c18a3db..df35ab1 100644 --- a/agents/rainbow_agent.py +++ b/agents/rainbow_agent.py @@ -18,7 +18,7 @@ import gym_remote.exceptions as gre from sonic_util import AllowBacktracking, make_env def main(): - """Run PPO until the environment throws an exception.""" + """Run DQN until the environment throws an exception.""" env = AllowBacktracking(make_env(stack=False, scale_rew=False)) env = BatchedFrameStack(BatchedGymEnv([[env]]), num_images=4, concat=False) config = tf.ConfigProto()