From 1fd8ef455a82168e5594e9fb0c223d9691519158 Mon Sep 17 00:00:00 2001 From: Alex Morehead Date: Tue, 17 Dec 2024 11:47:36 -0600 Subject: [PATCH] Update PoseBusters plot --- notebooks/posebusters_method_interaction_analysis_plotting.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/notebooks/posebusters_method_interaction_analysis_plotting.py b/notebooks/posebusters_method_interaction_analysis_plotting.py index 04e92c8..7fb33a3 100644 --- a/notebooks/posebusters_method_interaction_analysis_plotting.py +++ b/notebooks/posebusters_method_interaction_analysis_plotting.py @@ -523,11 +523,11 @@ def histogram_to_vector(histogram, bins): # plot the EMD values for each method emd_values_df = pd.DataFrame(emd_values, columns=["Category", "Target", "EMD"]) -emd_values_df.to_csv("dockgen_plif_emd_values.csv") +emd_values_df.to_csv("posebusters_benchmark_plif_emd_values.csv") plt.figure(figsize=(10, 5)) sns.boxplot(data=emd_values_df, x="Category", y="EMD") plt.xlabel("") plt.ylabel("PLIF-EMD") -plt.savefig("dockgen_plif_emd_values.png") +plt.savefig("posebusters_benchmark_plif_emd_values.png") plt.show()