-
Notifications
You must be signed in to change notification settings - Fork 5
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
Recursive (online) GP example #128
Comments
Hi @JoachimSchaeffer -- thanks for opening this issue. We don't at present have a good way to incrementally update the posterior as new data arrives. I know this is a bit odd, but it's because the package is designed around the I'd be open to suggestions for how to tackle this problem. I agree that it ought to be straightforward, but we'd need a good API. |
@willtebbutt, thanks for your quick response. Adding the relevant AbstractGP reference: AbstractGPs with exact GPs handle this under the hood by updating the covariance matrix, which works by just calling posterior again For approximate/variational posterior, the API is slightly different: I don't have a strong preference regarding API, but I feel like |
Ohhh that's a fair point -- yeah, we should just implement that API (I had completely forgotten we had implemented that haha). Is this something that you're interested in tackling yourself? |
Unfortunately, I'm just starting with using and learning Julia and don't feel ready yet to tackle it myself. |
Cool. I'm also up to my eyes in work at the minute, so don't really have time to look at it currently. Maybe someone else will come along and have a go at it! |
Hi everyone,
Thanks for creating and sharing this great package!
I'm just getting started looking into the package and was wondering how to update a TemporalGP for new data that becomes available.
To be more precise, I have time series data, with x in R3 and y in R1 for every time step, unevenly sampled in time and containing gaps. I'd like to make a GP forecast for a few days and then update the GP every couple of days once this new data becomes available.
Could you share an example of such a case?
(I am happy to support it if it's something that currently is not there but could be done with reasonable effort).
How would you go about solving this using TemporalGPs?
The text was updated successfully, but these errors were encountered: