danielz02 commited on
Commit
c7653d7
1 Parent(s): 1a89aba

Log the paths of the request files it tries to open

Browse files
Files changed (1) hide show
  1. src/leaderboard/read_evals.py +1 -1
src/leaderboard/read_evals.py CHANGED
@@ -104,7 +104,7 @@ class EvalResult:
104
  self.num_params = request.get("params", 0)
105
  self.date = request.get("submitted_time", "")
106
  except Exception:
107
- print(f"Could not find request file for {self.org}/{self.model}")
108
 
109
  def to_dict(self):
110
  """Converts the Eval Result to a dict compatible with our dataframe display"""
 
104
  self.num_params = request.get("params", 0)
105
  self.date = request.get("submitted_time", "")
106
  except Exception:
107
+ print(f"Could not find request file ({request_file}) for {self.org}/{self.model}")
108
 
109
  def to_dict(self):
110
  """Converts the Eval Result to a dict compatible with our dataframe display"""