Skip to content

Commit

Permalink
decrease scoring frequency
Browse files Browse the repository at this point in the history
  • Loading branch information
surcyf123 authored Jan 30, 2024
1 parent cf7595b commit d3dfb5a
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 / 6
will_score_all = random_number < 1 / 9
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 d3dfb5a

Please sign in to comment.