File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 37
37
get_llm_model_name ,
38
38
)
39
39
40
- REPEATS_SUMMARY_FILE_NAME = "repeats_summary .csv"
40
+ MODEL_SUMMARY_FILE_NAME = "model_summary .csv"
41
41
TASKS_SUMMARY_FILE_NAME = "tasks_summary.csv"
42
42
BENCHMARK_SUMMARY = "benchmark_summary.csv"
43
43
@@ -153,7 +153,7 @@ def merge_model_repeats_summary(
153
153
repeats = len (summaries ),
154
154
)
155
155
156
- merged_file = model_dir / REPEATS_SUMMARY_FILE_NAME
156
+ merged_file = model_dir / MODEL_SUMMARY_FILE_NAME
157
157
with open (merged_file , "w" , newline = "" ) as f :
158
158
writer = csv .DictWriter (f , fieldnames = ModelSummary .model_fields .keys ())
159
159
writer .writeheader ()
@@ -181,7 +181,7 @@ def merge_benchmark_summary(
181
181
all_summaries : List [ModelSummary ] = []
182
182
for model_name in model_names :
183
183
model_dir = bench_dir / model_name
184
- merged_file = model_dir / REPEATS_SUMMARY_FILE_NAME
184
+ merged_file = model_dir / MODEL_SUMMARY_FILE_NAME
185
185
186
186
if merged_file .exists ():
187
187
with open (merged_file , "r" ) as f :
You can’t perform that action at this time.
0 commit comments