Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
danielz02
commited on
Log the paths of the request files it tries to open
Browse files
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"""
|