Commit
·
5e55e05
1
Parent(s):
fd7fab5
fix: Use new URL for results
Browse files
app.py
CHANGED
@@ -651,7 +651,7 @@ def fetch_results() -> dict[Language, pd.DataFrame]:
|
|
651 |
logger.info("Fetching results from ScandEval benchmark...")
|
652 |
|
653 |
response = requests.get(
|
654 |
-
"https://
|
655 |
)
|
656 |
response.raise_for_status()
|
657 |
records = [
|
|
|
651 |
logger.info("Fetching results from ScandEval benchmark...")
|
652 |
|
653 |
response = requests.get(
|
654 |
+
"https://raw.githubusercontent.com/ScandEval/leaderboards/refs/heads/main/results/results.jsonl"
|
655 |
)
|
656 |
response.raise_for_status()
|
657 |
records = [
|