Spaces:
Runtime error
Runtime error
Commit
·
a1984af
1
Parent(s):
92b8020
Test
Browse files
src/leaderboard/read_evals.py
CHANGED
|
@@ -35,6 +35,7 @@ class EvalResult:
|
|
| 35 |
def init_from_json_file(self, json_filepath):
|
| 36 |
"""Inits the result from the specific model result file"""
|
| 37 |
with open(json_filepath) as fp:
|
|
|
|
| 38 |
data = json.load(fp)
|
| 39 |
|
| 40 |
config = data.get("config")
|
|
|
|
| 35 |
def init_from_json_file(self, json_filepath):
|
| 36 |
"""Inits the result from the specific model result file"""
|
| 37 |
with open(json_filepath) as fp:
|
| 38 |
+
print(f"Reading {json_filepath}")
|
| 39 |
data = json.load(fp)
|
| 40 |
|
| 41 |
config = data.get("config")
|