Skip to content

Commit d2730cd

Browse files
committed
2 parents b384427 + ac14efb commit d2730cd

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

neurons/validators/score_manager.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,10 @@ 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+
185189
scores = np.zeros(self.neuron.metagraph.n, dtype=np.float32)
186190
tiny_weight = 1 / 128
187191
big_weight = 1.0

0 commit comments

Comments
 (0)