From 502c52c75cb4cd5b5d38469f34839aa17a9eeb79 Mon Sep 17 00:00:00 2001 From: Ubuntu Date: Sat, 16 Mar 2024 18:39:38 +0000 Subject: [PATCH] slow step frequency --- cortext/__init__.py | 2 +- validators/weight_setter.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cortext/__init__.py b/cortext/__init__.py index 094214fd..ac8c6f42 100644 --- a/cortext/__init__.py +++ b/cortext/__init__.py @@ -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])) diff --git a/validators/weight_setter.py b/validators/weight_setter.py index d7ebdabb..626bbfc7 100644 --- a/validators/weight_setter.py +++ b/validators/weight_setter.py @@ -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