Skip to content

Commit 2fcd4f9

Browse files
authored
Merge pull request #153 from Multi-Agent-LLMs/nicer-charts
Nicer charts
2 parents 32e28fc + 13d8088 commit 2fcd4f9

5 files changed

Lines changed: 624 additions & 155 deletions

File tree

mallm/evaluation/evaluator.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -418,10 +418,12 @@ def run_evaluator(
418418
extensive: bool = False,
419419
) -> None:
420420
if Path(input_json_file_path).is_dir():
421+
print(f"Processing directory: {input_json_file_path}")
421422
batch_process_dir_path(
422423
input_json_file_path, output_dir_path, metrics, extensive
423424
)
424425
else:
426+
print(f"Processing file: {input_json_file_path}")
425427
evaluator = Evaluator(input_json_file_path, output_dir_path, metrics, extensive)
426428
evaluator.process()
427429

0 commit comments

Comments
 (0)