Changed the structure of multioutput kernel so that it doesn't change the API of Kernels + documented the class

This commit is contained in:
Eero Siivola 2018-01-23 15:21:42 +02:00
parent bbf4403f18
commit d7e7ed5987
6 changed files with 69 additions and 33 deletions

View file

@ -494,7 +494,6 @@ class KernelGradientTestsContinuous(unittest.TestCase):
X2t,_,_ = GPy.util.multioutput.build_XY([self.X2, self.X2])
self.assertTrue(check_kernel_gradient_functions(k, X=Xt, X2=X2t, verbose=verbose, fixed_X_dims=-1))
def test_Precomputed(self):
Xall = np.concatenate([self.X, self.X2])
cov = np.dot(Xall, Xall.T)