We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4da445 commit 25a266aCopy full SHA for 25a266a
2 files changed
plotify/wandb_plots.py
@@ -110,12 +110,10 @@ def wandb_plot(config):
110
run_ys = (y_cumsum[smooth_window:] - y_cumsum[:-smooth_window]) / smooth_window
111
run_xs = run_xs[:-smooth_window]
112
113
- # debug: plot original curve
114
- # plot.plot(run_xs, run_ys, label='original')
115
-
116
# average y values that have the same x values
117
xs_increasing = np.diff(run_xs)
118
- if not np.all(xs_increasing): # TODO: implement with scipy lfilter
+ if not np.all(xs_increasing):
+ # TODO: implement with scipy lfilter
119
new_xs = []
120
new_ys = []
121
accum = run_ys[0]
setup.py
@@ -5,7 +5,7 @@
5
find_packages,
6
)
7
8
-VERSION = '0.1.15'
+VERSION = '0.1.16'
9
10
install(
11
name='plotify',
0 commit comments