Skip to content

Commit

Permalink
change frequency to more text
Browse files Browse the repository at this point in the history
  • Loading branch information
surcyf123 authored Jan 29, 2024
1 parent ad19dbe commit 4db65f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion validators/weight_setter.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ async def perform_synthetic_scoring_and_update_weights(self):
await asyncio.sleep(10)

def select_validator(self, steps_passed):
return self.image_vali if steps_passed % 5 in (0, 1, 2) else self.text_vali
return self.text_vali if steps_passed % 5 in (0, 1, 2, 3) else self.image_vali

async def get_available_uids(self):
"""Get a dictionary of available UIDs and their axons asynchronously."""
Expand Down

0 comments on commit 4db65f8

Please sign in to comment.