Commit
·
f7aba58
1
Parent(s):
5711a3c
add
Browse files
src/leaderboard/read_evals.py
CHANGED
@@ -175,9 +175,9 @@ def get_raw_eval_results(results_path: str, requests_path: str) -> list[EvalResu
|
|
175 |
eval_results = {}
|
176 |
for model_result_filepath in model_result_filepaths:
|
177 |
# Creation of result
|
178 |
-
print(f"Model result filepath: {model_result_filepath}")
|
179 |
eval_result = EvalResult.init_from_json_file(model_result_filepath)
|
180 |
-
print(eval_result)
|
181 |
eval_result.update_with_request_file(requests_path)
|
182 |
|
183 |
# Store results of same eval together
|
|
|
175 |
eval_results = {}
|
176 |
for model_result_filepath in model_result_filepaths:
|
177 |
# Creation of result
|
178 |
+
# print(f"Model result filepath: {model_result_filepath}")
|
179 |
eval_result = EvalResult.init_from_json_file(model_result_filepath)
|
180 |
+
# print(eval_result)
|
181 |
eval_result.update_with_request_file(requests_path)
|
182 |
|
183 |
# Store results of same eval together
|