You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using multiple threads to collect experience each thread always get lock on call of the step function.
I have been facing this problem since I updated the API. I tried both halite and football environment.
new_obs, reward, done, info = self.env.step(actions)
Uh oh!
There was an error while loading. Please reload this page.
Hi,
When using multiple threads to collect experience each thread always get lock on call of the step function.
I have been facing this problem since I updated the API. I tried both halite and football environment.
new_obs, reward, done, info = self.env.step(actions)
Full code:
`class EpisodeCollector(threading.Thread):
n_episode = 0
reward_sum = 0
max_episode = 0
class ParallelEpisodeCollector:
The text was updated successfully, but these errors were encountered: