mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-05-08 03:22:38 +02:00
Exception fixes for Python 3 compat
This commit is contained in:
parent
70c8f4a410
commit
c4fb58176d
8 changed files with 25 additions and 25 deletions
|
|
@ -48,7 +48,7 @@ class SparseGP(GP):
|
|||
inference_method = var_dtc.VarDTC(limit=1 if not self.missing_data else Y.shape[1])
|
||||
else:
|
||||
#inference_method = ??
|
||||
raise NotImplementedError, "what to do what to do?"
|
||||
raise NotImplementedError("what to do what to do?")
|
||||
print("defaulting to ", inference_method, "for latent function inference")
|
||||
|
||||
self.Z = Param('inducing inputs', Z)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue