Skip to content

Commit 502c52c

Browse files
author
Ubuntu
committed
slow step frequency
1 parent a0e7122 commit 502c52c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cortext/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020

2121
# version must stay on line 22
22-
__version__ = "3.2.9"
22+
__version__ = "3.3.0."
2323
version_split = __version__.split(".")
2424
__spec_version__ = (
2525
(1000 * int(version_split[0]))

validators/weight_setter.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ async def perform_synthetic_scoring_and_update_weights(self):
243243
)
244244

245245
# if we want to slow down the speed of the validator steps
246-
# await asyncio.sleep(100)
246+
await asyncio.sleep(60)
247247

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

0 commit comments

Comments
 (0)