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
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
When I run the Multitask GP Regression example from here:
https://docs.gpytorch.ai/en/stable/examples/03_Multitask_Exact_GPs/Multitask_GP_Regression.html
and replace ExactMarginalLogLikelihood with LeaveOneOutPseudoLikelihood
mll = gpytorch.mlls.ExactMarginalLogLikelihood(likelihood, model)
replaced with
mll = gpytorch.mlls.LeaveOneOutPseudoLikelihood(likelihood, model)
I get the following error:
Is LeaveOneOutPseudoLikelihood mll fundamentally incompatible with Multitask GPR or is this a bug that can be fixed?
Beta Was this translation helpful? Give feedback.
All reactions