Skip to content

Commit 14c4a7f

Browse files
author
acer-king
committed
score 0 incase of no scores for uid
1 parent 5e790df commit 14c4a7f

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

validators/weight_setter.py

+6-1
Original file line numberDiff line numberDiff line change
@@ -637,7 +637,7 @@ async def process_queries_from_database(self):
637637
model = item.get("synapse").model
638638
if (uid, model) in empty_uid_model_items:
639639
bt.logging.trace(
640-
f"this miner {uid} has at least 1 empty response for model {model}. so not being scored.")
640+
f"this miner {uid} has at least 1 empty response for model {model}. so being scored as 0.")
641641
continue
642642
items_to_score.append(item)
643643
bt.logging.info(f"total len of datas to score: {len(items_to_score)}")
@@ -654,6 +654,11 @@ async def process_queries_from_database(self):
654654
self.total_scores[uid] += score
655655
self.score_counts[uid] += 1
656656

657+
for uid in self.uid_to_capacity:
658+
if self.total_scores.get(uid) is None:
659+
self.total_scores[uid] = 0
660+
self.score_counts[uid] = 1
661+
657662
bt.logging.info(
658663
f"current total score are {self.total_scores}. total time of scoring is {time.time() - start_time}")
659664
self.saving_datas = queries_to_process.copy()

0 commit comments

Comments
 (0)