mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-05-14 14:32:37 +02:00
Exception fixes for Python 3 compat
This commit is contained in:
parent
2b8ef1041b
commit
74f8caba2b
8 changed files with 15 additions and 15 deletions
|
|
@ -50,7 +50,7 @@ class SparseGPMiniBatch(SparseGP):
|
|||
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.kl_factr = 1.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue