Quantopian's community platform is shutting down. Please read this post for more information and download your code.
Back to Community
Gaussian Processes for classification/regression?

Has anybody used Gaussian Processes for classification/regression tasks on Quantopian? I tried to use a GP classifier but I was getting ImportErrror at both:

from sklearn.gaussian_process import GaussianProcessClassifier
from sklearn.gaussian_process.kernels import RBF

does anybody know how to get around this?

Thanks!

Marco

2 responses

Same here. I think Quantopian uses an older version of sklearn that does not contain up-to-date sklearn.gaussian_process.

Please consider upgrade sklearn to >= 0.18.

when using calls you may have to use the older library calls. for example gaussianMixture is GM