mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-06-08 15:05:15 +02:00
removing silly einsum
This commit is contained in:
parent
3c3af7f3fe
commit
55b77064d4
1 changed files with 0 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue