I have two arrays X and Y.
Is there a function I can call in tensorboard to do the smooth?
Right now I can do an alternative way in python like:
sav_smoooth = savgol_filter(Y, 51, 3)
plt.plot(X, Y)
But I am not sure what's way tensorboard do smooth. Is there a function I can call?
Thanks.