autopep8 on deepq/experiments

This commit is contained in:
Peter Zhokhov
2018-09-11 12:47:50 -07:00
parent 3bf35cb468
commit 5c5a9f4b31
2 changed files with 1 additions and 2 deletions

View File

@@ -7,7 +7,7 @@ from baselines.common import models
def main():
env = gym.make("MountainCar-v0")
act = deepq.learn(
env,
env,
network=models.mlp(num_layers=1, num_hidden=64),
total_timesteps=0,
load_path='mountaincar_model.pkl'

View File

@@ -29,7 +29,6 @@ def main():
model.save('pong_model.pkl')
env.close()
if __name__ == '__main__':