From 55b77064d4da73943a3ad67e8ce3c67490626ecc Mon Sep 17 00:00:00 2001 From: James Hensman Date: Thu, 30 Apr 2015 13:53:17 +0100 Subject: [PATCH] removing silly einsum --- GPy/inference/latent_function_inference/svgp.py | 1 - 1 file changed, 1 deletion(-) diff --git a/GPy/inference/latent_function_inference/svgp.py b/GPy/inference/latent_function_inference/svgp.py index a7ee9d14..8d99e750 100644 --- a/GPy/inference/latent_function_inference/svgp.py +++ b/GPy/inference/latent_function_inference/svgp.py @@ -15,7 +15,6 @@ class SVGP(LatentFunctionInference): L = choleskies.flat_to_triang(q_u_chol) - S_ein = np.einsum('ijk,ljk->ilk', L, L) #L.dot(L.T) S = np.empty((num_outputs, num_inducing, num_inducing)) [np.dot(L[:,:,i], L[:,:,i].T, S[i,:,:]) for i in range(num_outputs)] S = S.swapaxes(0,2)