Skip to content

Commit b3c4b1f

Browse files
authored
Merge pull request #137 from web-genie-ai/feat/increase-seo-competition
Feat/increase seo competition
2 parents ac14efb + 830e08f commit b3c4b1f

File tree

3 files changed

+3
-8
lines changed

3 files changed

+3
-8
lines changed

neurons/validators/genie_validator.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,10 +81,9 @@ async def query_miners(self):
8181

8282
available_challenges_classes = [
8383
AccuracyChallenge,
84-
#QualityChallenge,
85-
AccuracyChallenge,
8684
SeoChallenge,
87-
BalancedChallenge,
85+
SeoChallenge,
86+
SeoChallenge,
8887
]
8988

9089
with self.lock:

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

webgenie/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import psutil
44
# Change this value when updating your code base.
55
# Define the version of the webgenie.
6-
__VERSION__ = "1.1.28" # version
6+
__VERSION__ = "1.1.29" # version
77

88
SPEC_VERSION = (
99
(1000 * int(__VERSION__.split(".")[0]))

0 commit comments

Comments
 (0)