Commit
·
14b38c3
1
Parent(s):
8a45bc0
add
Browse files
src/leaderboard/read_evals.py
CHANGED
@@ -175,6 +175,7 @@ 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 |
eval_result = EvalResult.init_from_json_file(model_result_filepath)
|
179 |
eval_result.update_with_request_file(requests_path)
|
180 |
|
|
|
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 |
eval_result.update_with_request_file(requests_path)
|
181 |
|