From 7a7d563576c2d98fc33acee0ac8ba9c61fde6176 Mon Sep 17 00:00:00 2001 From: beckdaniel Date: Thu, 30 Jul 2015 17:09:31 +0100 Subject: [PATCH] commented out has_uncertain_inputs in warped gps since it breaks plotting --- GPy/models/warped_gp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GPy/models/warped_gp.py b/GPy/models/warped_gp.py index 5bc9a417..b5654053 100644 --- a/GPy/models/warped_gp.py +++ b/GPy/models/warped_gp.py @@ -23,7 +23,7 @@ class WarpedGP(GP): self.scale_data = False if self.scale_data: Y = self._scale_data(Y) - self.has_uncertain_inputs = False + #self.has_uncertain_inputs = False self.Y_untransformed = Y.copy() self.predict_in_warped_space = False likelihood = likelihoods.Gaussian()