Skip to content

Commit 830e08f

Browse files
committed
chore: do not skip contest
1 parent d2730cd commit 830e08f

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

neurons/validators/score_manager.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -182,10 +182,6 @@ def get_winner(self, total_scores: np.ndarray, solved_tasks: np.ndarray, number_
182182
return winner
183183

184184
def get_scores(self, session_upto: int):
185-
if session_upto % 4 == 3:
186-
# skip the balanced competition
187-
return np.zeros(self.neuron.metagraph.n, dtype=np.float32)
188-
189185
scores = np.zeros(self.neuron.metagraph.n, dtype=np.float32)
190186
tiny_weight = 1 / 128
191187
big_weight = 1.0

0 commit comments

Comments
 (0)