There was an error while loading. Please reload this page.
1 parent f6a2d50 commit d3a1472Copy full SHA for d3a1472
src/run_benchmark.py
@@ -262,7 +262,7 @@ def convert_dict_to_df(target_dict: Dict) -> pd.DataFrame:
262
df_list = [convert_dict_to_df(each) for each in calculate_metrics_results]
263
df = pd.concat(df_list, ignore_index=True)
264
265
- df.to_csv(csv_path, index=False)
+ df.to_csv(csv_path, index=False, sep="\t")
266
267
print(f"Metrics written to CSV at {csv_path}.")
268
0 commit comments