Skip to content

Commit

Permalink
fix number of update steps calculation in run script
Browse files Browse the repository at this point in the history
  • Loading branch information
inoryy committed Nov 25, 2018
1 parent 5b22267 commit 99df7c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reaver/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def main(argv):
expt.save_gin_config()
expt.save_model_summary(agent.model)

agent.run(env, args.updates)
agent.run(env, args.updates * args.traj_len * args.batch_sz // args.envs)


if __name__ == '__main__':
Expand Down

0 comments on commit 99df7c6

Please sign in to comment.