mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-05-12 21:42:39 +02:00
[ep] now calling exact inference instead of copying code
This commit is contained in:
parent
79bfbfc776
commit
8132084de6
7 changed files with 56 additions and 75 deletions
|
|
@ -98,7 +98,7 @@ class GP(Model):
|
|||
inference_method = exact_gaussian_inference.ExactGaussianInference()
|
||||
else:
|
||||
inference_method = expectation_propagation.EP()
|
||||
print("defaulting to ", inference_method, "for latent function inference")
|
||||
print("defaulting to " + str(inference_method) + " for latent function inference")
|
||||
self.inference_method = inference_method
|
||||
|
||||
logger.info("adding kernel and likelihood as parameters")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue