Skip to content

Commit

Permalink
[performance_global] add second csv with 0.005 threshold for true pos…
Browse files Browse the repository at this point in the history
…tives
  • Loading branch information
LaraFuhrmann committed Oct 11, 2023
1 parent 9e2f242 commit 213c5e0
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -612,10 +612,13 @@ def main(
benchmark_plots(df_bench, dname_out)

# precision/recall
df_pr = compute_pr(df_pred, df_true)
df_pr = compute_pr(df_pred, df_true, thres=0.005)
df_pr.to_csv(csv_dir / "pr_results_thres0.005.csv")
df_pr = compute_pr(df_pred, df_true, thres=0.01)
plot_pr(df_pr, df_stats, dname_out)
df_pr.to_csv(csv_dir / "pr_results.csv")


if quast:
# quast stuff
df_quast = run_metaquast(
Expand Down

0 comments on commit 213c5e0

Please sign in to comment.