Spaces:
Running
Running
XufengDuan
commited on
Commit
•
7fadd3a
1
Parent(s):
24c1bd7
update scripts
Browse files
src/leaderboard/read_evals.py
CHANGED
@@ -129,6 +129,10 @@ class EvalResult:
|
|
129 |
|
130 |
def update_with_request_file(self, requests_path):
|
131 |
"""Finds the relevant request file for the current model and updates info with it"""
|
|
|
|
|
|
|
|
|
132 |
request_file = get_request_file_for_model(requests_path, self.full_model,
|
133 |
self.precision.value.name)
|
134 |
print("test the variable:",request_file)
|
|
|
129 |
|
130 |
def update_with_request_file(self, requests_path):
|
131 |
"""Finds the relevant request file for the current model and updates info with it"""
|
132 |
+
all_files_before = os.listdir(requests_path)
|
133 |
+
print("test the variable:", all_files_before)
|
134 |
+
print(self.full_model)
|
135 |
+
print(self.precision.value.name)
|
136 |
request_file = get_request_file_for_model(requests_path, self.full_model,
|
137 |
self.precision.value.name)
|
138 |
print("test the variable:",request_file)
|