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

Why is interpolation necessary? #5

Closed
shaform opened this issue Oct 19, 2017 · 1 comment
Closed

Why is interpolation necessary? #5

shaform opened this issue Oct 19, 2017 · 1 comment

Comments

@shaform
Copy link

shaform commented Oct 19, 2017

interpolates = X + (alpha*differences)
= X + U[0, 1] (X_p - X)
= X + U[0, 1](X + 0.5*std * U[0,1] - X)
= X + U[0, 1] * 0.5 std * U[0, 1]
= X + 0.5 * std * U[0, 1]^2
~= X_p

so it appears that X_p can be directly used instead of interpolates.

And the paper actually used X_p instead of interpolates.

@kodalinaveen3
Copy link
Owner

Yes! We will be releasing updated version of our paper next week. The first draft was done in haste, while shooting for a conference deadline

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