-
Notifications
You must be signed in to change notification settings - Fork 12
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
speeding up Cholesky method with chol2inv? #52
Comments
@davharris Thanks for the heads up. Do you think it would be worth implementing a more robust / general purpose R package to provide these GP functions? If so, would you be interested in collaborating on it? I haven't looked at what else is out there for R recently, but as this particular repo is tied up with this particular project (paper finally out btw, maybe you've seen already: http://dx.doi.org/10.1098/rspb.2014.1631) it seems it might be better to start clean (adding better tests & documentation). |
I'm not really sure what's out there in terms of R GP packages, but I know that @goldingn has been thinking about writing a package for a while. My needs have often been specialized enough that I need to write my own code, but a good GP toolbox could be really useful and I'd be interested in contributing if enough people think it would be worthwhile. |
Well, when I looked back in 2012 there was:
and a function for GP regression in http://www.carlboettiger.info/2012/10/16/gaussian-processes.html So yeah, I hear you regarding writing one's own code, but that's rarely a good long-term solution for standard methods. Anyway, yup, I think there's quite a few straight-forward ways to improve the speed of the algorithms here. Haven't been particularly rate-limited by the current version on the small problems I've been testing on, so thus far I haven't worried about it. Still, hoping to find time to do some hardening of both the GP and SDP methods here sometime. |
Yup, I have a fellowship interview Thursday. If I get it, writing a
|
Nice. Good luck! |
Thanks!
|
Hi Carl, hope you're having a great quarter. I was looking into some GP stuff for my own research and stumbled on the
chol2inv
function in base R. I haven't played with it yet, but it seems like it could be useful for speeding up some of the computations in the Cholesky method.I'm probably going to keep poking at this in the coming weeks/months, and I'll let you know if I find anything out, but I thought I'd put it on your radar in the mean time.
The text was updated successfully, but these errors were encountered: