Skip to content

Commit

Permalink
slow step frequency
Browse files Browse the repository at this point in the history
  • Loading branch information
Ubuntu committed Mar 16, 2024
1 parent a0e7122 commit 502c52c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cortext/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@


# version must stay on line 22
__version__ = "3.2.9"
__version__ = "3.3.0."
version_split = __version__.split(".")
__spec_version__ = (
(1000 * int(version_split[0]))
Expand Down
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(100)
await asyncio.sleep(60)

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 502c52c

Please sign in to comment.