Adam Jirkovsky
commited on
Commit
·
140095f
1
Parent(s):
1b77aa6
Disable result removal
Browse files
src/leaderboard/read_evals.py
CHANGED
|
@@ -166,8 +166,8 @@ def get_raw_eval_results(results_path: str, requests_path: str) -> list[EvalResu
|
|
| 166 |
files = [files[-1]]
|
| 167 |
|
| 168 |
for file in files:
|
| 169 |
-
print(file)
|
| 170 |
-
os.remove(os.path.join(root, file)) # Use only to wipe the results storage!
|
| 171 |
model_result_filepaths.append(os.path.join(root, file))
|
| 172 |
|
| 173 |
eval_results = []
|
|
|
|
| 166 |
files = [files[-1]]
|
| 167 |
|
| 168 |
for file in files:
|
| 169 |
+
# print(file)
|
| 170 |
+
# os.remove(os.path.join(root, file)) # Use only to wipe the results storage!
|
| 171 |
model_result_filepaths.append(os.path.join(root, file))
|
| 172 |
|
| 173 |
eval_results = []
|