Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Overfit Wiggly Skaters? #126

Open
morash-sean opened this issue Nov 18, 2022 · 1 comment
Open

Overfit Wiggly Skaters? #126

morash-sean opened this issue Nov 18, 2022 · 1 comment

Comments

@morash-sean
Copy link

I'm trying to implement some wiggly skaters on a data set with about 20 observations and it seems to be overfitting to the original data. Am I giving it too much foresight with the y parameter or is 20 observations just insufficient to get a meaningfully smoothed outcome?
y= random.sample(range(10, 30), 20)
def posteriors(f,y):
s = {}
x = list()
k=1
a=0
for yi in y:
xi, xi_std, s = f(yi,s,k,a)
x.append(xi[0])
return x

@microprediction
Copy link
Owner

I can't tell from your code which f is being used. Can you share a colab?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants