You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Predictor.predict should return (predictions, uncertainty) (or confidence, spread, whatever). This matches the way scikit-learn deals with multiple kinds of returned prediction (see sklearn.neighbors.KDTree).
The text was updated successfully, but these errors were encountered:
Having some trouble with this and GPy. The documentation on the predict method says that it returns an array of variances (or a matrix of covariances), but it seems to just be returning nan. I can't find a fix for this.
I am not sure whether you are implementing GPClassifier or GPRegression. Classification is a bit of a beast with GPs, so I suggest to focus only on regression
Predictor.predict
should return(predictions, uncertainty)
(or confidence, spread, whatever). This matches the way scikit-learn deals with multiple kinds of returned prediction (seesklearn.neighbors.KDTree
).The text was updated successfully, but these errors were encountered: