Skip to content

Commit

Permalink
decrease vali costs
Browse files Browse the repository at this point in the history
  • Loading branch information
surcyf123 authored Feb 10, 2024
1 parent ea4cca2 commit ef3fbfa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion validators/text_validator.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit ef3fbfa

Please sign in to comment.