Skip to content

Commit d3a1472

Browse files
committed
Change delimiter from , to \t.
. .
1 parent f6a2d50 commit d3a1472

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/run_benchmark.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ def convert_dict_to_df(target_dict: Dict) -> pd.DataFrame:
262262
df_list = [convert_dict_to_df(each) for each in calculate_metrics_results]
263263
df = pd.concat(df_list, ignore_index=True)
264264

265-
df.to_csv(csv_path, index=False)
265+
df.to_csv(csv_path, index=False, sep="\t")
266266

267267
print(f"Metrics written to CSV at {csv_path}.")
268268

0 commit comments

Comments
 (0)