From d8a627c1d81fe8ffe16cb90a6564c5f96b9fa826 Mon Sep 17 00:00:00 2001 From: James Hensman Date: Tue, 10 Dec 2013 12:17:59 -0800 Subject: [PATCH] fixed bug introduced my merge --- GPy/core/gp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GPy/core/gp.py b/GPy/core/gp.py index 60ee438c..83705e89 100644 --- a/GPy/core/gp.py +++ b/GPy/core/gp.py @@ -22,8 +22,8 @@ class GP(GPBase): """ def __init__(self, X, Y, kernel, likelihood, inference_method=None, name='gp'): - super(GP, self).__init__(X, likelihood, kernel, normalize_X=normalize_X, name=name) + #find a sensible inference method if inference_method is None: if isinstance(likelihood, likelihoods.Gaussian): inference_method = exact_gaussian_inference.ExactGaussianInference()