From 73bd02261d802471c69ef675d71cdc6976a240f4 Mon Sep 17 00:00:00 2001 From: Alan Saul Date: Thu, 6 Jun 2013 15:35:38 +0100 Subject: [PATCH] Fixed mrd init call --- GPy/models/mrd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GPy/models/mrd.py b/GPy/models/mrd.py index a31b044f..75c6fee9 100644 --- a/GPy/models/mrd.py +++ b/GPy/models/mrd.py @@ -78,7 +78,7 @@ class MRD(Model): self.NQ = self.num_data * self.input_dim self.MQ = self.num_inducing * self.input_dim - super(MRD, self).__init__() + Model.__init__(self) self._set_params(self._get_params()) @property