Skip to content

Commit

Permalink
decreased number of eval its
Browse files Browse the repository at this point in the history
  • Loading branch information
threewisemonkeys-as committed Oct 23, 2020
1 parent bf1a50a commit e2eef66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion genrl/trainers/distributed.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def evaluate(self, timestep, render: bool = False) -> None:
render (bool): Option to render the environment during evaluation
"""
episode_rewards = []
for i in range(10):
for i in range(5):
state = self.env.reset()
done = False
episode_reward = 0
Expand Down

0 comments on commit e2eef66

Please sign in to comment.