mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-05-05 01:32:40 +02:00
Fixed bug in the product of kernels
This commit is contained in:
parent
d8ca31121b
commit
d8785b534e
1 changed files with 1 additions and 1 deletions
|
|
@ -155,7 +155,7 @@ class kern(parameterised):
|
|||
|
||||
D = K1.D + K2.D
|
||||
|
||||
newkernparts = [product_orthogonal(k1,k2).parts[0] for k1, k2 in itertools.product(K1.parts,K2.parts)]
|
||||
newkernparts = [product_orthogonal(k1,k2) for k1, k2 in itertools.product(K1.parts,K2.parts)]
|
||||
|
||||
slices = []
|
||||
for sl1, sl2 in itertools.product(K1.input_slices,K2.input_slices):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue