From ef3fbfabd8d5dda8a1e80ae9496ac58eee5fe496 Mon Sep 17 00:00:00 2001 From: surcyf123 <114649324+surcyf123@users.noreply.github.com> Date: Sat, 10 Feb 2024 03:23:46 -0500 Subject: [PATCH] decrease vali costs --- validators/text_validator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/validators/text_validator.py b/validators/text_validator.py index a7179575..32cfee4d 100644 --- a/validators/text_validator.py +++ b/validators/text_validator.py @@ -103,7 +103,7 @@ async def start_query(self, available_uids, metagraph) -> tuple[list, dict]: def should_i_score(self): random_number = random.random() - will_score_all = random_number < 1 / 9 + will_score_all = random_number < 1 / 12 bt.logging.info(f"Random Number: {random_number}, Will score text responses: {will_score_all}") return will_score_all