Bazsalanszky commited on
Commit
84629c5
1 Parent(s): c127f06
Files changed (1) hide show
  1. src/leaderboard/read_evals.py +1 -0
src/leaderboard/read_evals.py CHANGED
@@ -149,6 +149,7 @@ def get_request_file_for_model(requests_path, model_name, precision):
149
  request_files = sorted(request_files, reverse=True)
150
  for tmp_request_file in request_files:
151
  with open(tmp_request_file, "r") as f:
 
152
  req_content = json.load(f)
153
  if req_content["status"] in ["FINISHED"] and req_content["precision"] == precision:
154
  request_file = tmp_request_file
 
149
  request_files = sorted(request_files, reverse=True)
150
  for tmp_request_file in request_files:
151
  with open(tmp_request_file, "r") as f:
152
+ print(f"Reading {tmp_request_file}")
153
  req_content = json.load(f)
154
  if req_content["status"] in ["FINISHED"] and req_content["precision"] == precision:
155
  request_file = tmp_request_file