File tree 1 file changed +6
-1
lines changed
1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -637,7 +637,7 @@ async def process_queries_from_database(self):
637
637
model = item .get ("synapse" ).model
638
638
if (uid , model ) in empty_uid_model_items :
639
639
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 ." )
641
641
continue
642
642
items_to_score .append (item )
643
643
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):
654
654
self .total_scores [uid ] += score
655
655
self .score_counts [uid ] += 1
656
656
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
+
657
662
bt .logging .info (
658
663
f"current total score are { self .total_scores } . total time of scoring is { time .time () - start_time } " )
659
664
self .saving_datas = queries_to_process .copy ()
You can’t perform that action at this time.
0 commit comments