Skip to content

Commit 25a266a

Browse files
committed
Version bump.
1 parent e4da445 commit 25a266a

2 files changed

Lines changed: 3 additions & 5 deletions

File tree

plotify/wandb_plots.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -110,12 +110,10 @@ def wandb_plot(config):
110110
run_ys = (y_cumsum[smooth_window:] - y_cumsum[:-smooth_window]) / smooth_window
111111
run_xs = run_xs[:-smooth_window]
112112

113-
# debug: plot original curve
114-
# plot.plot(run_xs, run_ys, label='original')
115-
116113
# average y values that have the same x values
117114
xs_increasing = np.diff(run_xs)
118-
if not np.all(xs_increasing): # TODO: implement with scipy lfilter
115+
if not np.all(xs_increasing):
116+
# TODO: implement with scipy lfilter
119117
new_xs = []
120118
new_ys = []
121119
accum = run_ys[0]

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
find_packages,
66
)
77

8-
VERSION = '0.1.15'
8+
VERSION = '0.1.16'
99

1010
install(
1111
name='plotify',

0 commit comments

Comments
 (0)