Skip to content

Commit

Permalink
remove title add x-label
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixBenning committed May 13, 2024
1 parent 1397d1f commit 29eaab7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyrfd/plots.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ def qq_plot_losses(ax, df: pd.DataFrame, *, batch_sizes=None):
if idx % 2 == 1: # regression line
line.set_linestyle("--")

ax.set_title("")
ax.set_xlabel("")
ax.legend()

Expand Down Expand Up @@ -255,5 +256,4 @@ def qq_plot_sq_gradient_norms(ax, df: pd.DataFrame, *, dims, batch_sizes=None):
line.set_linestyle("--")

ax.set_title("")
ax.set_xlabel("")
ax.legend()

0 comments on commit 29eaab7

Please sign in to comment.