Spaces:
Running
Running
update
Browse files- merge_eval_result.py +1 -1
merge_eval_result.py
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
import json, os
|
2 |
|
3 |
eval_result_path = "file/example_eval_results"
|
4 |
-
eval_result_files = [f for f in os.listdir(eval_result_path) if f.endswith('.json')]
|
5 |
|
6 |
merged_result = {}
|
7 |
for fn in eval_result_files:
|
|
|
1 |
import json, os
|
2 |
|
3 |
eval_result_path = "file/example_eval_results"
|
4 |
+
eval_result_files = [f for f in os.listdir(eval_result_path) if f.endswith('.json') and not 'merge' in f]
|
5 |
|
6 |
merged_result = {}
|
7 |
for fn in eval_result_files:
|