-
Notifications
You must be signed in to change notification settings - Fork 54
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
time series #82
Comments
Thanks for raising this issue. We're currently working on a readthedocs page to provide more information on the package. There is a notebook which gives a time series example, but I think what you're looking for will require new kernels to be implemented. Could you give us some more information about what you're trying to do and perhaps we can help you create the kernel you need? |
Thanks for responding. What I have in mind is to use a stationary kernel where the covariance with gamma(n) = n == 0 ? sigma : lambda * n^-alpha where |
We've developed the stationary kernels based on weighted squared Euclidean distance as this is common to most of the standard kernels. I think it would be difficult to put your kernel into that framework by, for example, using a similar style to the |
I tried to extend this to use for time series (in particular, gaussian times series with long memory) by extending Stationary but I couldn't seem to work out the details. The top of Stationary indicated 2 methods that needed to be implemented but it seems more were required and I gave up after 4 or 5. Documentation on how to write a new kernel would be helpful here.
The text was updated successfully, but these errors were encountered: