Skip to content

Commit 5de794f

Browse files
authored
Merge pull request #154 from web-genie-ai/feat/increase-threshold
Feat/increase threshold
2 parents 1d6c5c5 + 0be7041 commit 5de794f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

neurons/validators/genie_validator.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,9 +93,9 @@ async def query_miners(self):
9393

9494
available_challenges_classes = [
9595
AccuracyChallenge,
96-
SeoChallenge,
96+
BalancedChallenge,
9797
AccuracyChallenge,
98-
SeoChallenge,
98+
BalancedChallenge,
9999
]
100100

101101
with self.lock:

webgenie/challenges/challenge.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ async def calculate_scores(self) -> dict[str, np.ndarray]:
6666
accuracy_scores = scores[ACCURACY_METRIC_NAME]
6767
quality_scores = scores[QUALITY_METRIC_NAME]
6868
seo_scores = scores[SEO_METRIC_NAME]
69-
aggregated_scores = accuracy_scores * 0.6 + quality_scores * 0.2 + seo_scores * 0.2
69+
aggregated_scores = accuracy_scores * 0.8 + quality_scores * 0.1 + seo_scores * 0.1
7070
return aggregated_scores, scores
7171

7272

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.3.3" # version
6+
__VERSION__ = "1.3.4" # version
77

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

0 commit comments

Comments
 (0)