Skip to content

Commit 383fe3e

Browse files
committed
chore: adjust params
1 parent d35bbf5 commit 383fe3e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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.9, seo_scores, 0)
46+
aggregated_scores = np.where(accuracy_scores > 0.85, 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.9, quality_scores, 0)
57+
aggregated_scores = np.where(accuracy_scores > 0.85, quality_scores, 0)
5858
return aggregated_scores, scores
5959

6060

0 commit comments

Comments
 (0)