Skip to content

Commit

Permalink
smaller filter
Browse files Browse the repository at this point in the history
  • Loading branch information
peterdsharpe committed Dec 6, 2023
1 parent 4f6b903 commit ff12f38
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions training/supercloud_plot_progress.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,9 @@ def parse_line(row):
)

plt.plot(
np.exp(ndimage.gaussian_filter1d(np.log(data[key]), sigma=6)),
color=lines[0].get_color(), alpha=0.6,
label=key
np.exp(ndimage.gaussian_filter1d(np.log(data[key]), sigma=2)),
color=lines[0].get_color(), alpha=0.7,
label=key, zorder=4
)

plt.yscale('log')
Expand Down

0 comments on commit ff12f38

Please sign in to comment.