Skip to content

Commit

Permalink
fixed typos 1
Browse files Browse the repository at this point in the history
  • Loading branch information
rudrasohan committed Nov 30, 2018
1 parent 3e28aee commit f66db73
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions baselines/ddpg/ddpg.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,9 +274,9 @@ def as_scalar(x):
with open(os.path.join(logdir, 'eval_env_state.pkl'), 'wb') as f:
pickle.dump(eval_env.get_state(), f)

os.makdirs(logdir,exist_ok=True)
os.makedirs(logdir, exist_ok=True)
savepath = os.path.join(save_path, str(epoch))
print('Saving to ',savepath)
print('Saving to ', savepath)
agent.save(savepath)


Expand Down

0 comments on commit f66db73

Please sign in to comment.