We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac47bc7 commit ae40d36Copy full SHA for ae40d36
jorldy/manager/distributed_manager.py
@@ -28,6 +28,7 @@ def run(self, step=1):
28
if self.mode == "sync":
29
items = ray.get([actor.run.remote(step) for actor in self.actors])
30
transitions = reduce(lambda x, y: x + y, [item[1] for item in items])
31
+ completed_ratio = 1.0
32
else:
33
if len(self.running_ids) == 0:
34
self.running_ids = [actor.run.remote(step) for actor in self.actors]
0 commit comments