Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Update src/leaderboard/read_evals.py
Browse files
src/leaderboard/read_evals.py
CHANGED
@@ -145,6 +145,7 @@ def get_request_file_for_model(requests_path, model_name, precision):
|
|
145 |
for tmp_request_file in request_files:
|
146 |
with open(tmp_request_file, "r") as f:
|
147 |
req_content = json.load(f)
|
|
|
148 |
if (
|
149 |
req_content["status"] in ["FINISHED"]
|
150 |
and req_content["precision"] == precision.split(".")[-1]
|
|
|
145 |
for tmp_request_file in request_files:
|
146 |
with open(tmp_request_file, "r") as f:
|
147 |
req_content = json.load(f)
|
148 |
+
print("reading file", tmp_request_file)
|
149 |
if (
|
150 |
req_content["status"] in ["FINISHED"]
|
151 |
and req_content["precision"] == precision.split(".")[-1]
|