sklearn wrapper for SparseGPRegressor #1064
igi-chris
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I recently implemented a scikit learn wrapper for the SparseGPRegressor (with help from Dan Cornford) and thought I would share it here in case it is useful for anyone else.
We wanted to keep this within the sklearn ecosystem because we use the Pipeline, various preprocessing options etc. However, the sklearn GPR has some limitations, most notably that there is no sparse option, so it is not very scalable.
Here is the wrapper code:
We have used sklearn's
check_estimator
utility to validate this:Beta Was this translation helpful? Give feedback.
All reactions