Skip to content

Commit 309ffda

Browse files
committed
doc: edit version
1 parent dbf220f commit 309ffda

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "web-genie-ai"
3-
version = "1.1.19"
3+
version = "1.1.20"
44
description = "The first bittensor subnet for web generation"
55
readme = "README.md"
66
requires-python = ">=3.12.4"

webgenie/challenges/challenge.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ async def calculate_scores(self) -> dict[str, np.ndarray]:
4343
scores = await self.task.generator.calculate_scores(self.task, self.solutions)
4444
accuracy_scores = scores[ACCURACY_METRIC_NAME]
4545
seo_scores = scores[SEO_METRIC_NAME]
46-
aggregated_scores = np.where(accuracy_scores > 0.8, seo_scores, 0)
46+
aggregated_scores = np.where(accuracy_scores > 0.7, seo_scores, 0)
4747
return aggregated_scores, scores
4848

4949

@@ -54,7 +54,7 @@ async def calculate_scores(self) -> dict[str, np.ndarray]:
5454
scores = await self.task.generator.calculate_scores(self.task, self.solutions)
5555
accuracy_scores = scores[ACCURACY_METRIC_NAME]
5656
quality_scores = scores[QUALITY_METRIC_NAME]
57-
aggregated_scores = np.where(accuracy_scores > 0.8, quality_scores, 0)
57+
aggregated_scores = np.where(accuracy_scores > 0.7, quality_scores, 0)
5858
return aggregated_scores, scores
5959

6060

0 commit comments

Comments
 (0)