fix DQN learning bug (#632)

* Update run.py

* Update utils.py

* Update utils.py
This commit is contained in:
pzhokhov
2018-10-03 14:37:40 -07:00
committed by GitHub
parent 34ae3194b4
commit 4121d9c1a8
2 changed files with 1 additions and 26 deletions

View File

@@ -99,7 +99,7 @@ def build_env(args):
env = atari_wrappers.make_atari(env_id)
env.seed(seed)
env = bench.Monitor(env, logger.get_dir())
env = atari_wrappers.wrap_deepmind(env, frame_stack=True, scale=True)
env = atari_wrappers.wrap_deepmind(env, frame_stack=True)
elif alg == 'trpo_mpi':
env = atari_wrappers.make_atari(env_id)
env.seed(seed)