Spaces:
Sleeping
Sleeping
Hugo Flores Garcia
commited on
Commit
•
e5dcb5f
1
Parent(s):
2f3fb32
add fig plots
Browse files- scripts/utils/plots.py +43 -0
scripts/utils/plots.py
ADDED
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import matplotlib.pyplot as plt
|
2 |
+
import seaborn as sns
|
3 |
+
from pandas.api.types import CategoricalDtype
|
4 |
+
|
5 |
+
def plot_metrics(metrics, condition_to_latex, title, color_palette):
|
6 |
+
# Add a new column to your dataframe with the latex representation
|
7 |
+
metrics['condition_latex'] = metrics['condition'].map(condition_to_latex)
|
8 |
+
|
9 |
+
# Order condition_latex as per the condition_to_latex dictionary
|
10 |
+
cat_type = CategoricalDtype(categories=condition_to_latex.values(), ordered=True)
|
11 |
+
metrics['condition_latex'] = metrics['condition_latex'].astype(cat_type)
|
12 |
+
|
13 |
+
# Compute mean and std for each condition for each metric
|
14 |
+
grouped = metrics.groupby('condition_latex')[['mel', 'frechet']].agg(['mean', 'std'])
|
15 |
+
|
16 |
+
fig, axs = plt.subplots(2, 1, figsize=(7, 5.25))
|
17 |
+
|
18 |
+
# Set the main title for the figure
|
19 |
+
fig.suptitle(title, fontsize=16)
|
20 |
+
|
21 |
+
# Get color for each bar in the plot
|
22 |
+
bar_colors = [color_palette[condition] for condition in grouped.index]
|
23 |
+
|
24 |
+
# Plot mel
|
25 |
+
sns.boxplot(x='condition_latex', y='mel', data=metrics, ax=axs[0], palette=color_palette, showfliers=False)
|
26 |
+
axs[0].set_ylabel('Mel Spectrogram Loss \u2190')
|
27 |
+
axs[0].set_xlabel('') # Remove x-axis label
|
28 |
+
axs[0].set_xticklabels(grouped.index, rotation=0, ha='center')
|
29 |
+
|
30 |
+
# Plot frechet
|
31 |
+
axs[1].bar(grouped.index, grouped['frechet']['mean'], yerr=grouped['frechet']['std'], color=bar_colors)
|
32 |
+
axs[1].set_ylabel('FAD \u2190')
|
33 |
+
axs[1].set_xlabel('') # Remove x-axis label
|
34 |
+
axs[1].set_xticklabels(grouped.index, rotation=0, ha='center')
|
35 |
+
|
36 |
+
# Adjust the space between plots
|
37 |
+
plt.subplots_adjust(hspace=0.1)
|
38 |
+
|
39 |
+
# Remove any unnecessary space around the plot
|
40 |
+
plt.tight_layout(rect=[0, 0, 1, 0.96])
|
41 |
+
|
42 |
+
# Reduce the space between suptitle and the plot
|
43 |
+
plt.subplots_adjust(top=0.92)
|