Skip to content

Commit

Permalink
fix sleeps
Browse files Browse the repository at this point in the history
  • Loading branch information
surcyf123 committed Jul 7, 2024
1 parent 62a0632 commit 7eefed1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion validators/weight_setter.py
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ async def perform_synthetic_scoring_and_update_weights(self):
)

# if we want to slow down the speed of the validator steps
await asyncio.sleep(5)
await asyncio.sleep(300)

def select_validator(self, steps_passed):
return self.text_vali if steps_passed % 10 in (0, 1, 2, 3, 4, 5, 6, 7, 8) else self.image_vali
Expand Down

0 comments on commit 7eefed1

Please sign in to comment.