This commit is contained in:
2025-10-21 09:20:43 +08:00
parent ddb7dbfc67
commit a8aa5a2bd6
2 changed files with 157 additions and 34 deletions

View File

@@ -424,8 +424,8 @@ def evaluate_auc_pipeline(
if output_path is not None:
Path(output_path).mkdir(exist_ok=True, parents=True)
df_auc_merged.to_parquet(f"{output_path}/df_both.parquet", index=False)
df_auc_unpooled_merged.to_parquet(f"{output_path}/df_auc_unpooled.parquet", index=False)
df_auc_merged.to_csv(f"{output_path}/df_both.csv", index=False)
df_auc_unpooled_merged.to_csv(f"{output_path}/df_auc_unpooled.csv", index=False)
return df_auc_unpooled_merged, df_auc_merged